[][src]Enum fuzzcheck_mutators::option::UnmutateToken

pub enum UnmutateToken<Value, Cache, Token> {
    UnmutateSome(Token),
    ToSome(Value, Cache),
    ToNone,
}

Variants

UnmutateSome(Token)
ToSome(Value, Cache)
ToNone

Auto Trait Implementations

impl<Value, Cache, Token> RefUnwindSafe for UnmutateToken<Value, Cache, Token> where
    Cache: RefUnwindSafe,
    Token: RefUnwindSafe,
    Value: RefUnwindSafe

impl<Value, Cache, Token> Send for UnmutateToken<Value, Cache, Token> where
    Cache: Send,
    Token: Send,
    Value: Send

impl<Value, Cache, Token> Sync for UnmutateToken<Value, Cache, Token> where
    Cache: Sync,
    Token: Sync,
    Value: Sync

impl<Value, Cache, Token> Unpin for UnmutateToken<Value, Cache, Token> where
    Cache: Unpin,
    Token: Unpin,
    Value: Unpin

impl<Value, Cache, Token> UnwindSafe for UnmutateToken<Value, Cache, Token> where
    Cache: UnwindSafe,
    Token: UnwindSafe,
    Value: UnwindSafe

Blanket Implementations

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

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

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

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.