pub enum RuntimeWord<BuiltinTok, SeqTok> where
SeqTok: Clone,
BuiltinTok: Clone, {
LiteralVal(i32),
Verb(BuiltinTok),
VerbSeq(VerbSeqInner<SeqTok>),
UncondRelativeJump {
offset: i32,
},
CondRelativeJump {
offset: i32,
jump_on: bool,
},
}
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.