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