Skip to main content

InterchangeResult

Type Alias InterchangeResult 

Source
pub type InterchangeResult<T> = Result<T, InterchangeError>;
Expand description

Result type for interchange adapters.

Aliased Type§

pub enum InterchangeResult<T> {
    Ok(T),
    Err(InterchangeError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InterchangeError)

Contains the error value