pub enum TransitionErrorKind {
InvalidTransition,
GuardFailed {
guard: &'static str,
},
ActionFailed {
action: &'static str,
},
}Variants§
Trait Implementations§
Source§impl Clone for TransitionErrorKind
impl Clone for TransitionErrorKind
Source§fn clone(&self) -> TransitionErrorKind
fn clone(&self) -> TransitionErrorKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TransitionErrorKind
impl Debug for TransitionErrorKind
Source§impl PartialEq for TransitionErrorKind
impl PartialEq for TransitionErrorKind
impl Eq for TransitionErrorKind
impl StructuralPartialEq for TransitionErrorKind
Auto Trait Implementations§
impl Freeze for TransitionErrorKind
impl RefUnwindSafe for TransitionErrorKind
impl Send for TransitionErrorKind
impl Sync for TransitionErrorKind
impl Unpin for TransitionErrorKind
impl UnwindSafe for TransitionErrorKind
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