Skip to main content

Result

Type Alias Result 

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

SDK result alias parameterised over the SDK facade RmuxError.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(RmuxError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RmuxError)

Contains the error value