pub enum AnyResult<M: Manager> {
Continue(AnyState<M>),
Success(AnySuccess<M>),
Error(ParseError),
}
Variants§
Auto Trait Implementations§
impl<M> Freeze for AnyResult<M>
impl<M> RefUnwindSafe for AnyResult<M>
impl<M> Send for AnyResult<M>
impl<M> Sync for AnyResult<M>
impl<M> Unpin for AnyResult<M>
impl<M> UnwindSafe for AnyResult<M>
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