pub enum StateError {
Transition(TransitionError),
WrongInference {
expected: Option<u64>,
actual: u64,
},
JobIdExhausted,
NotStalled,
Busy,
}Variants§
Trait Implementations§
Source§impl Debug for StateError
impl Debug for StateError
Source§impl From<TransitionError> for StateError
impl From<TransitionError> for StateError
Source§fn from(error: TransitionError) -> Self
fn from(error: TransitionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StateError
impl RefUnwindSafe for StateError
impl Send for StateError
impl Sync for StateError
impl Unpin for StateError
impl UnsafeUnpin for StateError
impl UnwindSafe for StateError
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