[][src]Enum zsplg::ffi_intern::Result

#[repr(C)]
pub enum Result<T> {
    Ok(T),
    Err(Wrapper),
}

Variants

Ok(T)
Err(Wrapper)

Trait Implementations

impl<T, E> From<Result<T, E>> for Result<T> where
    E: Into<Error>, 
[src]

Auto Trait Implementations

impl<T> !Send for Result<T>

impl<T> !Sync for Result<T>

impl<T> Unpin for Result<T> where
    T: Unpin

impl<T> UnwindSafe for Result<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Result<T> where
    T: RefUnwindSafe

Blanket Implementations

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 = !

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.

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

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

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