pub enum WithToken<T> {
    No(T),
    Yes(T, AccountToken),
}
Expand description

A value, potentially accompanied by a signing token.

Variants

No(T)

No token.

Yes(T, AccountToken)

With token.

Implementations

Map the value with the given closure, preserving the token.

Convert into inner value, ignoring possible token.

Convert the WithToken into a tuple.

Trait Implementations

The resulting type after dereferencing.

Dereferences the value.

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.