pub enum FsmError {
StateIndexOutOfBounds,
TransitionIndexOutOfBounds,
MaxNumberOfStatesExceeded,
AddTransitionSrcDstStatesEqual,
StateIsEmpty,
TransitionIsEmpty,
}Variants§
StateIndexOutOfBounds
TransitionIndexOutOfBounds
MaxNumberOfStatesExceeded
AddTransitionSrcDstStatesEqual
StateIsEmpty
TransitionIsEmpty
Trait Implementations§
impl Copy for FsmError
impl StructuralPartialEq for FsmError
Auto Trait Implementations§
impl Freeze for FsmError
impl RefUnwindSafe for FsmError
impl Send for FsmError
impl Sync for FsmError
impl Unpin for FsmError
impl UnwindSafe for FsmError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more