#[repr(C)]pub struct _GDBusNodeInfo {
pub ref_count: gint,
pub path: *mut gchar,
pub interfaces: *mut *mut GDBusInterfaceInfo,
pub nodes: *mut *mut GDBusNodeInfo,
pub annotations: *mut *mut GDBusAnnotationInfo,
}
Expand description
GDBusNodeInfo: @ref_count: The reference count or -1 if statically allocated. @path: The path of the node or %NULL if omitted. Note that this may be a relative path. See the D-Bus specification for more details. @interfaces: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusInterfaceInfo structures or %NULL if there are no interfaces. @nodes: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusNodeInfo structures or %NULL if there are no nodes. @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations.
Information about nodes in a remote object hierarchy.
Since: 2.26
Fields§
§ref_count: gint
§path: *mut gchar
§interfaces: *mut *mut GDBusInterfaceInfo
§nodes: *mut *mut GDBusNodeInfo
§annotations: *mut *mut GDBusAnnotationInfo
Trait Implementations§
Source§impl Clone for _GDBusNodeInfo
impl Clone for _GDBusNodeInfo
Source§fn clone(&self) -> _GDBusNodeInfo
fn clone(&self) -> _GDBusNodeInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _GDBusNodeInfo
impl Debug for _GDBusNodeInfo
Source§impl PartialEq for _GDBusNodeInfo
impl PartialEq for _GDBusNodeInfo
impl Copy for _GDBusNodeInfo
impl Eq for _GDBusNodeInfo
impl StructuralPartialEq for _GDBusNodeInfo
Auto Trait Implementations§
impl Freeze for _GDBusNodeInfo
impl RefUnwindSafe for _GDBusNodeInfo
impl !Send for _GDBusNodeInfo
impl !Sync for _GDBusNodeInfo
impl Unpin for _GDBusNodeInfo
impl UnwindSafe for _GDBusNodeInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more