[][src]Struct liquid_error::FnKey

pub struct FnKey<T, F> where
    F: FnOnce() -> Cow<'static, str>, 
{ /* fields omitted */ }

Partially constructed context (missing value) for Result<T>.

Methods

impl<T, F> FnKey<T, F> where
    F: FnOnce() -> Cow<'static, str>, 
[src]

#[must_use] pub fn new(builder: Result<T>, key: F) -> Self[src]

Save off a key for a context that will be added to builder.

#[must_use] pub fn value<S>(self, value: S) -> Result<T> where
    S: Into<Cow<'static, str>>, 
[src]

Finish creating context and add it to Result<T>.

#[must_use] pub fn value_with<V>(self, value: V) -> Result<T> where
    V: FnOnce() -> Cow<'static, str>, 
[src]

Finish creating context and add it to Result<T>.

Auto Trait Implementations

impl<T, F> Send for FnKey<T, F> where
    F: Send,
    T: Send

impl<T, F> Unpin for FnKey<T, F> where
    F: Unpin,
    T: Unpin

impl<T, F> Sync for FnKey<T, F> where
    F: Sync,
    T: Sync

impl<T, F> !UnwindSafe for FnKey<T, F>

impl<T, F> !RefUnwindSafe for FnKey<T, F>

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]