#[non_exhaustive]pub enum VariantClass {
Show 18 variants
Boolean,
Byte,
Int16,
Uint16,
Int32,
Uint32,
Int64,
Uint64,
Handle,
Double,
String,
ObjectPath,
Signature,
Variant,
Maybe,
Array,
Tuple,
DictEntry,
}
Expand description
The range of possible top-level types of #GVariant instances.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Boolean
The #GVariant is a boolean.
Byte
The #GVariant is a byte.
Int16
The #GVariant is a signed 16 bit integer.
Uint16
The #GVariant is an unsigned 16 bit integer.
Int32
The #GVariant is a signed 32 bit integer.
Uint32
The #GVariant is an unsigned 32 bit integer.
Int64
The #GVariant is a signed 64 bit integer.
Uint64
The #GVariant is an unsigned 64 bit integer.
Handle
The #GVariant is a file handle index.
Double
The #GVariant is a double precision floating point value.
String
The #GVariant is a normal string.
ObjectPath
The #GVariant is a D-Bus object path string.
Signature
The #GVariant is a D-Bus signature string.
Variant
The #GVariant is a variant.
Maybe
The #GVariant is a maybe-typed value.
Array
The #GVariant is an array.
Tuple
The #GVariant is a tuple.
DictEntry
The #GVariant is a dictionary entry.
Trait Implementations§
Source§impl Clone for VariantClass
impl Clone for VariantClass
Source§fn clone(&self) -> VariantClass
fn clone(&self) -> VariantClass
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 VariantClass
impl Debug for VariantClass
Source§impl Hash for VariantClass
impl Hash for VariantClass
Source§impl Ord for VariantClass
impl Ord for VariantClass
Source§fn cmp(&self, other: &VariantClass) -> Ordering
fn cmp(&self, other: &VariantClass) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VariantClass
impl PartialEq for VariantClass
Source§impl PartialOrd for VariantClass
impl PartialOrd for VariantClass
impl Copy for VariantClass
impl Eq for VariantClass
impl StructuralPartialEq for VariantClass
Auto Trait Implementations§
impl Freeze for VariantClass
impl RefUnwindSafe for VariantClass
impl Send for VariantClass
impl Sync for VariantClass
impl Unpin for VariantClass
impl UnwindSafe for VariantClass
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)