#[repr(C)]pub struct _GDBusArgInfo {
pub ref_count: gint,
pub name: *mut gchar,
pub signature: *mut gchar,
pub annotations: *mut *mut GDBusAnnotationInfo,
}
Expand description
GDBusArgInfo: @ref_count: The reference count or -1 if statically allocated. @name: Name of the argument, e.g. @unix_user_id. @signature: D-Bus signature of the argument (a single complete type). @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 an argument for a method or a signal.
Since: 2.26
Fields§
§ref_count: gint
§name: *mut gchar
§signature: *mut gchar
§annotations: *mut *mut GDBusAnnotationInfo
Trait Implementations§
Source§impl Clone for _GDBusArgInfo
impl Clone for _GDBusArgInfo
Source§fn clone(&self) -> _GDBusArgInfo
fn clone(&self) -> _GDBusArgInfo
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 _GDBusArgInfo
impl Debug for _GDBusArgInfo
Source§impl PartialEq for _GDBusArgInfo
impl PartialEq for _GDBusArgInfo
impl Copy for _GDBusArgInfo
impl Eq for _GDBusArgInfo
impl StructuralPartialEq for _GDBusArgInfo
Auto Trait Implementations§
impl Freeze for _GDBusArgInfo
impl RefUnwindSafe for _GDBusArgInfo
impl !Send for _GDBusArgInfo
impl !Sync for _GDBusArgInfo
impl Unpin for _GDBusArgInfo
impl UnwindSafe for _GDBusArgInfo
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