pub enum FsmError {
InvalidTransition {
from: String,
to: String,
},
}Variants§
Trait Implementations§
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 UnsafeUnpin 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