Struct zvariant::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<'s: 'a>(value_signature: Signature<'s>) -> Self

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

source

pub fn get<T>(self) -> Result<Option<T>, Error>where T: TryFrom<Value<'a>>,

Get the inner value as a concrete type

source

pub fn signature(&self) -> Signature<'static>

Get the signature of Maybe.

NB: This method potentially allocates and copies. Use full_signature if you’d like to avoid that.

source

pub fn full_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.

Trait Implementations§

source§

impl<'a> Clone for Maybe<'a>

source§

fn clone(&self) -> Maybe<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
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<'a> From<&'a Maybe<'a>> for Value<'a>

source§

fn from(v: &'a 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>> + Clone,

source§

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

Converts to this type from the input type.
source§

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

source§

fn from(v: Maybe<'a>) -> 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> PartialEq<Maybe<'a>> for Maybe<'a>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
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 OwnedValue> for &'a Maybe<'a>

§

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<'a>> for &'a Maybe<'a>

§

type Error = Error

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

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

Performs the conversion.
source§

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

§

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 TryFrom<OwnedValue> for Maybe<'static>

§

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>

§

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> StructuralPartialEq for Maybe<'a>

Auto Trait Implementations§

§

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 Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.