pub struct VariantTy { /* private fields */ }
Expand description
Describes Variant
types.
This is a borrowed counterpart of VariantType
.
Essentially it’s a str
statically guaranteed to be a valid type string.
Implementations§
Source§impl VariantTy
impl VariantTy
Sourcepub const OBJECT_PATH: &'static VariantTy = _
pub const OBJECT_PATH: &'static VariantTy = _
DBus object path.
Sourcepub const ANY: &'static VariantTy = _
pub const ANY: &'static VariantTy = _
An indefinite type that is a supertype of every type (including itself).
Sourcepub const DICT_ENTRY: &'static VariantTy = _
pub const DICT_ENTRY: &'static VariantTy = _
Any dict entry type, i.e. DictEntry<K, V>
.
Sourcepub const DICTIONARY: &'static VariantTy = _
pub const DICTIONARY: &'static VariantTy = _
Any dictionary type, i.e. HashMap<K, V>
, BTreeMap<K, V>
.
Sourcepub const STRING_ARRAY: &'static VariantTy = _
pub const STRING_ARRAY: &'static VariantTy = _
String array, i.e. [&str]
.
Sourcepub const OBJECT_PATH_ARRAY: &'static VariantTy = _
pub const OBJECT_PATH_ARRAY: &'static VariantTy = _
Object path array, i.e. [&str]
.
Sourcepub const BYTE_STRING: &'static VariantTy = _
pub const BYTE_STRING: &'static VariantTy = _
Byte string, i.e. [u8]
.
Sourcepub const BYTE_STRING_ARRAY: &'static VariantTy = _
pub const BYTE_STRING_ARRAY: &'static VariantTy = _
Byte string array, i.e. [[u8]]
.
Sourcepub const VARDICT: &'static VariantTy = _
pub const VARDICT: &'static VariantTy = _
Variant dictionary, i.e. HashMap<String, Variant>
, BTreeMap<String, Variant>
, etc.
Sourcepub fn new(type_string: &str) -> Result<&VariantTy, BoolError>
pub fn new(type_string: &str) -> Result<&VariantTy, BoolError>
Tries to create a &VariantTy
from a string slice.
Returns Ok
if the string is a valid type string, Err
otherwise.
Sourcepub const unsafe fn from_str_unchecked(type_string: &str) -> &VariantTy
pub const unsafe fn from_str_unchecked(type_string: &str) -> &VariantTy
Converts a type string into &VariantTy
without any checks.
§Safety
The caller is responsible for passing in only a valid variant type string.
Sourcepub fn is_definite(&self) -> bool
pub fn is_definite(&self) -> bool
Check if this variant type is a definite type.
Sourcepub fn is_container(&self) -> bool
pub fn is_container(&self) -> bool
Check if this variant type is a container type.
Sourcepub fn is_dict_entry(&self) -> bool
pub fn is_dict_entry(&self) -> bool
Check if this variant type is a dict entry type.
Sourcepub fn is_variant(&self) -> bool
pub fn is_variant(&self) -> bool
Check if this variant type is a variant.
Sourcepub fn is_subtype_of(&self, supertype: &Self) -> bool
pub fn is_subtype_of(&self, supertype: &Self) -> bool
Check if this variant type is a subtype of another.
Sourcepub fn element(&self) -> &VariantTy
pub fn element(&self) -> &VariantTy
Return the element type of this variant type.
§Panics
This function panics if not called with an array or maybe type.
Sourcepub fn tuple_types(&self) -> VariantTyIterator<'_> ⓘ
pub fn tuple_types(&self) -> VariantTyIterator<'_> ⓘ
Iterate over the types of this variant type.
§Panics
This function panics if not called with a tuple or dictionary entry type.
Sourcepub fn first(&self) -> Option<&VariantTy>
pub fn first(&self) -> Option<&VariantTy>
Return the first type of this variant type.
§Panics
This function panics if not called with a tuple or dictionary entry type.
Trait Implementations§
Source§impl AsRef<VariantTy> for VariantType
impl AsRef<VariantTy> for VariantType
Source§impl Borrow<VariantTy> for VariantType
impl Borrow<VariantTy> for VariantType
Source§impl<'a, 'b> PartialEq<&'a VariantTy> for VariantType
impl<'a, 'b> PartialEq<&'a VariantTy> for VariantType
Source§impl<'a, 'b> PartialEq<VariantTy> for VariantType
impl<'a, 'b> PartialEq<VariantTy> for VariantType
Source§impl<'a, 'b> PartialEq<VariantType> for &'a VariantTy
impl<'a, 'b> PartialEq<VariantType> for &'a VariantTy
Source§impl<'a, 'b> PartialEq<VariantType> for VariantTy
impl<'a, 'b> PartialEq<VariantType> for VariantTy
Source§impl StaticType for VariantTy
impl StaticType for VariantTy
Source§fn static_type() -> Type
fn static_type() -> Type
Self
.Source§impl ToOwned for VariantTy
impl ToOwned for VariantTy
Source§type Owned = VariantType
type Owned = VariantType
Source§fn to_owned(&self) -> VariantType
fn to_owned(&self) -> VariantType
1.63.0 · Source§fn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
impl Eq for VariantTy
impl StructuralPartialEq for VariantTy
impl Sync for VariantTy
Auto Trait Implementations§
impl Freeze for VariantTy
impl RefUnwindSafe for VariantTy
impl Send for VariantTy
impl !Sized for VariantTy
impl Unpin for VariantTy
impl UnwindSafe for VariantTy
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
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
SendValue
clone of self
.