Skip to main content

ActResult

Type Alias ActResult 

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

Result type for ACT operations.

Aliased Type§

pub enum ActResult<T> {
    Ok(T),
    Err(ActError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ActError)

Contains the error value