Enum arret_runtime::abitype::ParamCapture[][src]

pub enum ParamCapture {
    Auto,
    Never,
    Always,
}

Variants

Auto

Indicates the capture of this parameter should be automatically inferred

Never

Explicitly specifies that this parameter is never captured

Always

Explicitly specifies that this parameter is captured

Trait Implementations

impl Clone for ParamCapture[src]

impl Debug for ParamCapture[src]

impl Hash for ParamCapture[src]

impl PartialEq<ParamCapture> for ParamCapture[src]

impl Copy for ParamCapture[src]

impl Eq for ParamCapture[src]

impl StructuralEq for ParamCapture[src]

impl StructuralPartialEq for ParamCapture[src]

Auto Trait Implementations

impl RefUnwindSafe for ParamCapture

impl Send for ParamCapture

impl Sync for ParamCapture

impl Unpin for ParamCapture

impl UnwindSafe for ParamCapture

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> HashInHeap for T where
    T: Hash
[src]

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

impl<T> PartialEqInHeap for T where
    T: PartialEq<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.