pub type ControllerStateResult = Result<(), ControllerError>;
Expand description
Return type from a controller after handling a state change.
Aliased Type§
enum ControllerStateResult {
Ok(()),
Err(ControllerError),
}
pub type ControllerStateResult = Result<(), ControllerError>;
Return type from a controller after handling a state change.
enum ControllerStateResult {
Ok(()),
Err(ControllerError),
}