pub enum RibIR {
Show 46 variants
PushLit(ValueAndType),
AssignVar(VariableId),
LoadVar(VariableId),
CreateAndPushRecord(WitType),
UpdateRecord(String),
PushList(WitType, usize),
PushTuple(WitType, usize),
PushSome(WitType),
PushNone(Option<WitType>),
PushOkResult(WitType),
PushErrResult(WitType),
PushFlag(ValueAndType),
SelectField(String),
SelectIndex(usize),
SelectIndexV1,
EqualTo,
GreaterThan,
And,
Or,
LessThan,
GreaterThanOrEqualTo,
LessThanOrEqualTo,
IsEmpty,
JumpIfFalse(InstructionId),
Jump(InstructionId),
Label(InstructionId),
Deconstruct,
CreateFunctionName(ParsedFunctionSite, FunctionReferenceType),
InvokeFunction(ComponentDependencyKey, InstanceVariable, usize, WitTypeWithUnit),
PushVariant(String, WitType),
PushEnum(String, WitType),
Throw(String),
GetTag,
Concat(usize),
Plus(WitType),
Minus(WitType),
Divide(WitType),
Multiply(WitType),
Negate,
ToIterator,
CreateSink(WitType),
AdvanceIterator,
PushToSink,
SinkToList,
Length,
GenerateWorkerName(Option<VariableId>),
}Variants§
PushLit(ValueAndType)
AssignVar(VariableId)
LoadVar(VariableId)
CreateAndPushRecord(WitType)
UpdateRecord(String)
PushList(WitType, usize)
PushTuple(WitType, usize)
PushSome(WitType)
PushNone(Option<WitType>)
PushOkResult(WitType)
PushErrResult(WitType)
PushFlag(ValueAndType)
SelectField(String)
SelectIndex(usize)
SelectIndexV1
EqualTo
GreaterThan
And
Or
LessThan
GreaterThanOrEqualTo
LessThanOrEqualTo
IsEmpty
JumpIfFalse(InstructionId)
Jump(InstructionId)
Label(InstructionId)
Deconstruct
CreateFunctionName(ParsedFunctionSite, FunctionReferenceType)
InvokeFunction(ComponentDependencyKey, InstanceVariable, usize, WitTypeWithUnit)
PushVariant(String, WitType)
PushEnum(String, WitType)
Throw(String)
GetTag
Concat(usize)
Plus(WitType)
Minus(WitType)
Divide(WitType)
Multiply(WitType)
Negate
ToIterator
CreateSink(WitType)
AdvanceIterator
PushToSink
SinkToList
Length
GenerateWorkerName(Option<VariableId>)
Implementations§
Source§impl RibIR
impl RibIR
pub fn get_instruction_id(&self) -> Option<InstructionId>
Trait Implementations§
impl StructuralPartialEq for RibIR
Auto Trait Implementations§
impl Freeze for RibIR
impl RefUnwindSafe for RibIR
impl Send for RibIR
impl Sync for RibIR
impl Unpin for RibIR
impl UnsafeUnpin for RibIR
impl UnwindSafe for RibIR
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