Struct glib::VariantTy
[−]
[src]
pub struct VariantTy { /* fields omitted */ }Describes Variant types.
This is a borrowed counterpart of VariantType.
Essentially it's a str statically guaranteed to be a valid type string.
Methods
impl VariantTy[src]
fn new(type_string: &str) -> Result<&VariantTy, ()>
Tries to create a &VariantTy from a string slice.
Returns Ok if the string is a valid type string, Err otherwise.
unsafe fn from_str_unchecked(type_string: &str) -> &VariantTy
Converts a type string into &VariantTy without any checks.
fn to_str(&self) -> &str
Converts to a string slice.
Trait Implementations
impl Debug for VariantTy[src]
impl PartialEq for VariantTy[src]
fn eq(&self, __arg_0: &VariantTy) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &VariantTy) -> bool
This method tests for !=.
impl Eq for VariantTy[src]
impl Hash for VariantTy[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Sync for VariantTy[src]
impl Display for VariantTy[src]
impl<'a> Into<Cow<'a, VariantTy>> for &'a VariantTy[src]
impl ToOwned for VariantTy[src]
type Owned = VariantType
fn to_owned(&self) -> VariantType
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut Self::Owned)
🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<'a, 'b> PartialEq<VariantType> for VariantTy[src]
fn eq(&self, other: &VariantType) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl<'a, 'b> PartialEq<VariantType> for &'a VariantTy[src]
fn eq(&self, other: &VariantType) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl<'a, 'b> PartialEq<Cow<'b, VariantTy>> for &'a VariantTy[src]
fn eq(&self, other: &Cow<'b, VariantTy>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl<'a, 'b> PartialEq<str> for VariantTy[src]
fn eq(&self, other: &str) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl<'a, 'b> PartialEq<&'a str> for VariantTy[src]
fn eq(&self, other: &&'a str) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl<'a, 'b> PartialEq<str> for &'a VariantTy[src]
fn eq(&self, other: &str) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl<'a, 'b> PartialEq<String> for VariantTy[src]
fn eq(&self, other: &String) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.