Struct extendr_api::wrapper::Promise[][src]

pub struct Promise<C, E, V> {
    pub code: C,
    pub env: E,
    pub value: V,
    pub seen: bool,
}

Fields

code: Cenv: Evalue: Vseen: bool

Trait Implementations

impl<C: Clone, E: Clone, V: Clone> Clone for Promise<C, E, V>[src]

impl<C: Debug, E: Debug, V: Debug> Debug for Promise<C, E, V>[src]

impl<C: PartialEq, E: PartialEq, V: PartialEq> PartialEq<Promise<C, E, V>> for Promise<C, E, V>[src]

impl<C, E, V> StructuralPartialEq for Promise<C, E, V>[src]

Auto Trait Implementations

impl<C, E, V> RefUnwindSafe for Promise<C, E, V> where
    C: RefUnwindSafe,
    E: RefUnwindSafe,
    V: RefUnwindSafe
[src]

impl<C, E, V> Send for Promise<C, E, V> where
    C: Send,
    E: Send,
    V: Send
[src]

impl<C, E, V> Sync for Promise<C, E, V> where
    C: Sync,
    E: Sync,
    V: Sync
[src]

impl<C, E, V> Unpin for Promise<C, E, V> where
    C: Unpin,
    E: Unpin,
    V: Unpin
[src]

impl<C, E, V> UnwindSafe for Promise<C, E, V> where
    C: UnwindSafe,
    E: UnwindSafe,
    V: UnwindSafe
[src]

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> 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.