[][src]Struct ffishim::types::Result

pub struct Result;

The std lib's Result type behavior.

Implementations

impl Behavior[src]

pub fn try_or_return(&self, expr: Expr) -> Expr[src]

Returns an expression that tries to unpack an FFIResult.

Upon failure, returns directly an error-full FFIResult. Can be used to unpack arguments in a ffi wrapper that returns an FFIResult.

pub fn wrap_success(&self, sty: &Type, expr: Expr) -> Expr[src]

Returns an expression that wraps the given expr into a Result that is always successful.

Trait Implementations

impl Behavior for Behavior[src]

Auto Trait Implementations

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.