[][src]Enum v8_api::RetType

pub enum RetType {
    Direct(Type),
    Maybe(Type),
}

The return type of a method.

Variants

Direct(Type)

The type is directly returned. For primitives T, this means just T (e.g. int). For references to T, this means Local<T> (e.g. Local<String>). For pointers to T, this means a non-null pointer T *.

Maybe(Type)

The type might be absent. For primitives T, this means Maybe<T> (e.g. Maybe<int>). For references to T, this means MaybeLocal<T>. For pointers to T, this means a nullable pointer T *.

Trait Implementations

impl Debug for RetType[src]

impl Display for RetType[src]

Auto Trait Implementations

impl Send for RetType

impl Sync for RetType

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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