summaryrefslogtreecommitdiff
path: root/vendor/github.com/godbus/dbus/v5/doc.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-02-28 18:41:28 -0500
committerGitHub <noreply@github.com>2022-02-28 18:41:28 -0500
commit4c529529bd19c3cc73f630f39bb2b8df68374ad3 (patch)
tree119fc94c898b87e2235ec50aede6497ac6ec6fb2 /vendor/github.com/godbus/dbus/v5/doc.go
parentc39dffe83db9fa3cfa6897b971956821f1bbcce2 (diff)
parent2e14c72707afc1625874b5fd4367b0bc418994a1 (diff)
downloadpodman-4c529529bd19c3cc73f630f39bb2b8df68374ad3.tar.gz
podman-4c529529bd19c3cc73f630f39bb2b8df68374ad3.tar.bz2
podman-4c529529bd19c3cc73f630f39bb2b8df68374ad3.zip
Merge pull request #13372 from ashley-cui/binarypath
Allow setting binarypath from Makefile
Diffstat (limited to 'vendor/github.com/godbus/dbus/v5/doc.go')
-rw-r--r--vendor/github.com/godbus/dbus/v5/doc.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/vendor/github.com/godbus/dbus/v5/doc.go b/vendor/github.com/godbus/dbus/v5/doc.go
index ade1df951..8f25a00d6 100644
--- a/vendor/github.com/godbus/dbus/v5/doc.go
+++ b/vendor/github.com/godbus/dbus/v5/doc.go
@@ -10,8 +10,10 @@ value.
Conversion Rules
For outgoing messages, Go types are automatically converted to the
-corresponding D-Bus types. The following types are directly encoded as their
-respective D-Bus equivalents:
+corresponding D-Bus types. See the official specification at
+https://dbus.freedesktop.org/doc/dbus-specification.html#type-system for more
+information on the D-Bus type system. The following types are directly encoded
+as their respective D-Bus equivalents:
Go type | D-Bus type
------------+-----------
@@ -39,8 +41,8 @@ Maps encode as DICTs, provided that their key type can be used as a key for
a DICT.
Structs other than Variant and Signature encode as a STRUCT containing their
-exported fields. Fields whose tags contain `dbus:"-"` and unexported fields will
-be skipped.
+exported fields in order. Fields whose tags contain `dbus:"-"` and unexported
+fields will be skipped.
Pointers encode as the value they're pointed to.