Enum miden_core::Decorator
source · pub enum Decorator {
Advice(AdviceInjector),
AsmOp(AssemblyOp),
}
Variants
Advice(AdviceInjector)
Injects zero or more values at the head of the advice tape as specified by the injector. This operation affects only the advice tape, but has no effect on other VM components (e.g., stack, memory), and does not advance VM clock.
AsmOp(AssemblyOp)
Adds information about the assembly instruction at a particular index (only applicable in debug mode)
Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more