settings::handler::setting_handler

Type Alias ControllerStateResult

Source
pub type ControllerStateResult = Result<(), ControllerError>;
Expand description

Return type from a controller after handling a state change.

Aliased Type§

enum ControllerStateResult {
    Ok(()),
    Err(ControllerError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(ControllerError)

Contains the error value