Enum miden_core::Decorator
source · pub enum Decorator {
Advice(AdviceInjector),
AsmOp(AssemblyOp),
}
Variants§
Advice(AdviceInjector)
Pushes zero or more values onto the advice stack, as specified by the injector. This operation affects only the advice stack and has no effect on other VM components (e.g. operand stack, memory), and does not advance the VM clock.
AsmOp(AssemblyOp)
Adds information about the assembly instruction at a particular index (only applicable in debug mode)
Trait Implementations§
source§impl PartialEq<Decorator> for Decorator
impl PartialEq<Decorator> for Decorator
impl Eq for Decorator
impl StructuralEq for Decorator
impl StructuralPartialEq for Decorator
Auto Trait Implementations§
impl RefUnwindSafe for Decorator
impl Send for Decorator
impl Sync for Decorator
impl Unpin for Decorator
impl UnwindSafe for Decorator
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