Struct Maybe

Source
pub struct Maybe<'a> { /* private fields */ }
Expand description

A helper type to wrap Option<T> (GVariant’s Maybe type) in Value.

API is provided to convert from, and to Option<T>.

Implementations§

Source§

impl<'a> Maybe<'a>

Source

pub fn inner(&self) -> &Option<Value<'a>>

Get a reference to underlying value.

Source

pub fn just(value: Value<'a>) -> Self

Create a new Just (Some) Maybe.

Source

pub fn nothing(value_signature: &Signature) -> Self

Create a new Nothing (None) Maybe, given the signature of the type.

Source

pub fn get<T>(&'a self) -> Result<Option<T>, Error>
where T: ?Sized + TryFrom<&'a Value<'a>>, <T as TryFrom<&'a Value<'a>>>::Error: Into<Error>,

Get the inner value as a concrete type

Source

pub fn signature(&self) -> &Signature

Get the signature of Maybe.

Source

pub fn value_signature(&self) -> &Signature

Get the signature of the potential value in the Maybe.

Source

pub fn try_clone(&self) -> Result<Self, Error>

Attempt to clone self.

Trait Implementations§

Source§

impl<'a> Debug for Maybe<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Maybe<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a, T> From<&Option<T>> for Maybe<'a>
where T: Type + Into<Value<'a>> + Clone,

Source§

fn from(value: &Option<T>) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<Maybe<'a>> for Value<'a>

Source§

fn from(v: Maybe<'a>) -> Self

Converts to this type from the input type.
Source§

impl<'a, T> From<Option<T>> for Maybe<'a>
where T: Type + Into<Value<'a>>,

Source§

fn from(value: Option<T>) -> Self

Converts to this type from the input type.
Source§

impl<'a> Hash for Maybe<'a>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'a> Ord for Maybe<'a>

Source§

fn cmp(&self, other: &Maybe<'a>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<'a> PartialEq for Maybe<'a>

Source§

fn eq(&self, other: &Maybe<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> PartialOrd for Maybe<'a>

Source§

fn partial_cmp(&self, other: &Maybe<'a>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<'a> Serialize for Maybe<'a>

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<'a> TryFrom<&'a Maybe<'a>> for Value<'a>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(v: &'a Maybe<'a>) -> Result<Self>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a OwnedValue> for &'a Maybe<'a>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(v: &'a OwnedValue) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&'a Value<'_>> for &'a Maybe<'a>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: &'a Value<'_>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<&Value<'a>> for Maybe<'a>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: &Value<'a>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<Maybe<'a>> for OwnedValue

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(v: Maybe<'a>) -> Result<Self>

Performs the conversion.
Source§

impl TryFrom<OwnedValue> for Maybe<'static>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(v: OwnedValue) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> TryFrom<Value<'a>> for Maybe<'a>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(value: Value<'a>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> Eq for Maybe<'a>

Source§

impl<'a> StructuralPartialEq for Maybe<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Maybe<'a>

§

impl<'a> RefUnwindSafe for Maybe<'a>

§

impl<'a> Send for Maybe<'a>

§

impl<'a> Sync for Maybe<'a>

§

impl<'a> Unpin for Maybe<'a>

§

impl<'a> UnwindSafe for Maybe<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,