Struct acs::vm::preprocessor::VmPreprocessedCode
source · [−]pub struct VmPreprocessedCode { /* private fields */ }
Expand description
Processes one or more VM code units into a vector of processed string lines.
Ideally you first create a builder
, then include as many VmCode
s you need,
and finally you build
to obtain a VmPreprocessedCode
.
Implementations
Trait Implementations
sourceimpl Default for VmPreprocessedCode
impl Default for VmPreprocessedCode
sourcefn default() -> VmPreprocessedCode
fn default() -> VmPreprocessedCode
Returns the “default value” for a type. Read more
sourceimpl From<VmPreprocessedCode> for Vec<VmInstruction>
impl From<VmPreprocessedCode> for Vec<VmInstruction>
sourcefn from(preprocessed_code: VmPreprocessedCode) -> Self
fn from(preprocessed_code: VmPreprocessedCode) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for VmPreprocessedCode
impl Send for VmPreprocessedCode
impl Sync for VmPreprocessedCode
impl Unpin for VmPreprocessedCode
impl UnwindSafe for VmPreprocessedCode
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