pub enum StackOp {
Push,
Pop,
}Expand description
Whether a StackError was encountered whilst pushing or popping
from the guest stack
Variants§
Push
The error was encountered while pushing to the guest stack
Pop
The error was encountered while popping from the guest stack
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StackOp
impl RefUnwindSafe for StackOp
impl Send for StackOp
impl Sync for StackOp
impl Unpin for StackOp
impl UnsafeUnpin for StackOp
impl UnwindSafe for StackOp
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