Skip to main content

ControllerResult

Type Alias ControllerResult 

Source
pub type ControllerResult = Result<(), ShaperailError>;
Expand description

Type alias for controller function results.

Aliased Type§

pub enum ControllerResult {
    Ok(()),
    Err(ShaperailError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(ShaperailError)

Contains the error value