Skip to main content

TypesResult

Type Alias TypesResult 

Source
pub type TypesResult<T> = Result<T, TypesError>;
Expand description

The result type for shared microsandbox contract operations.

Aliased Type§

pub enum TypesResult<T> {
    Ok(T),
    Err(TypesError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TypesError)

Contains the error value