pub enum Opcode {
Show 70 variants
PushNull,
PushBool(bool),
PushString(Arc<str>),
PushNumber(Decimal),
Pop,
Rot,
Fetch,
FetchRootEnv,
FetchEnv(Arc<str>),
FetchFast(Vec<FetchFastTarget>),
Negate,
Not,
Equal,
Jump(Jump, u32),
In,
Less,
More,
LessOrEqual,
MoreOrEqual,
Abs,
Average,
Median,
Mode,
Min,
Max,
Round,
Floor,
Ceil,
Sum,
Random,
Add,
Subtract,
Multiply,
Divide,
Modulo,
Exponent,
Interval {
left_bracket: Bracket,
right_bracket: Bracket,
},
Contains,
Keys,
Values,
DateFunction(Arc<str>),
DateManipulation(Arc<str>),
Uppercase,
Lowercase,
StartsWith,
EndsWith,
Matches,
FuzzyMatch,
Join,
Split,
Extract,
Trim,
Slice,
Array,
Object,
Len,
ParseDateTime,
ParseTime,
ParseDuration,
IncrementIt,
IncrementCount,
GetCount,
GetLen,
Pointer,
Begin,
End,
Flatten,
GetType,
TypeConversion(TypeConversionKind),
TypeCheck(TypeCheckKind),
}Expand description
Machine code interpreted by VM
Variants§
PushNull
PushBool(bool)
PushString(Arc<str>)
PushNumber(Decimal)
Pop
Rot
Fetch
FetchRootEnv
FetchEnv(Arc<str>)
FetchFast(Vec<FetchFastTarget>)
Negate
Not
Equal
Jump(Jump, u32)
In
Less
More
LessOrEqual
MoreOrEqual
Abs
Average
Median
Mode
Min
Max
Round
Floor
Ceil
Sum
Random
Add
Subtract
Multiply
Divide
Modulo
Exponent
Interval
Contains
Keys
Values
DateFunction(Arc<str>)
DateManipulation(Arc<str>)
Uppercase
Lowercase
StartsWith
EndsWith
Matches
FuzzyMatch
Join
Split
Extract
Trim
Slice
Array
Object
Len
ParseDateTime
ParseTime
ParseDuration
IncrementIt
IncrementCount
GetCount
GetLen
Pointer
Begin
End
Flatten
GetType
TypeConversion(TypeConversionKind)
TypeCheck(TypeCheckKind)
Trait Implementations§
impl Eq for Opcode
impl StructuralPartialEq for Opcode
Auto Trait Implementations§
impl Freeze for Opcode
impl RefUnwindSafe for Opcode
impl Send for Opcode
impl Sync for Opcode
impl Unpin for Opcode
impl UnwindSafe for Opcode
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