[][src]Enum fluent_builder::TryIntoValue

pub enum TryIntoValue<TValue, TBuilder> {
    Value(TValue),
    Builder(TBuilder),
}

The result of attempting to pull a value out of a builder.

Calling try_into_value will return TryIntoValue::Value if the builder has been given an explicit value. It will return TryIntoValue::Builder with the original builder if it hasn't been given an explicit value. Calling into_value will never fail, because if a value is missing it's constructed from the default function.

Variants

Value(TValue)Builder(TBuilder)

Auto Trait Implementations

impl<TValue, TBuilder> Send for TryIntoValue<TValue, TBuilder> where
    TBuilder: Send,
    TValue: Send

impl<TValue, TBuilder> Sync for TryIntoValue<TValue, TBuilder> where
    TBuilder: Sync,
    TValue: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]