#[repr(C)]pub struct _GDBusPropertyInfo {
pub ref_count: gint,
pub name: *mut gchar,
pub signature: *mut gchar,
pub flags: GDBusPropertyInfoFlags,
pub annotations: *mut *mut GDBusAnnotationInfo,
}
Expand description
GDBusPropertyInfo: @ref_count: The reference count or -1 if statically allocated. @name: The name of the D-Bus property, e.g. “SupportedFilesystems”. @signature: The D-Bus signature of the property (a single complete type). @flags: Access control flags for the property. @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 a D-Bus property on a D-Bus interface.
Since: 2.26
Fields§
§ref_count: gint
§name: *mut gchar
§signature: *mut gchar
§flags: GDBusPropertyInfoFlags
§annotations: *mut *mut GDBusAnnotationInfo
Trait Implementations§
Source§impl Clone for _GDBusPropertyInfo
impl Clone for _GDBusPropertyInfo
Source§fn clone(&self) -> _GDBusPropertyInfo
fn clone(&self) -> _GDBusPropertyInfo
Returns a duplicate 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 _GDBusPropertyInfo
impl Debug for _GDBusPropertyInfo
Source§impl PartialEq for _GDBusPropertyInfo
impl PartialEq for _GDBusPropertyInfo
impl Copy for _GDBusPropertyInfo
impl Eq for _GDBusPropertyInfo
impl StructuralPartialEq for _GDBusPropertyInfo
Auto Trait Implementations§
impl Freeze for _GDBusPropertyInfo
impl RefUnwindSafe for _GDBusPropertyInfo
impl !Send for _GDBusPropertyInfo
impl !Sync for _GDBusPropertyInfo
impl Unpin for _GDBusPropertyInfo
impl UnwindSafe for _GDBusPropertyInfo
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