pub enum Arg<StackT> {
StackValue(StackT),
Literal(DynLiteral),
}Expand description
An argument to a microcode operator.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<StackT> Freeze for Arg<StackT>where
StackT: Freeze,
impl<StackT> !RefUnwindSafe for Arg<StackT>
impl<StackT> !Send for Arg<StackT>
impl<StackT> !Sync for Arg<StackT>
impl<StackT> Unpin for Arg<StackT>where
StackT: Unpin,
impl<StackT> !UnwindSafe for Arg<StackT>
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