pub struct IntermediateCode {
pub instrs: Vec<Instruction>,
}
Expand description
The intermediate representation of a query. Made of up Instruction
s.
Fields§
§instrs: Vec<Instruction>
Trait Implementations§
Source§impl Clone for IntermediateCode
impl Clone for IntermediateCode
Source§fn clone(&self) -> IntermediateCode
fn clone(&self) -> IntermediateCode
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for IntermediateCode
impl RefUnwindSafe for IntermediateCode
impl Send for IntermediateCode
impl Sync for IntermediateCode
impl Unpin for IntermediateCode
impl UnwindSafe for IntermediateCode
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