pub struct IRPlanRef<'a> {
pub lp_top: Node,
pub lp_arena: &'a Arena<IR>,
pub expr_arena: &'a Arena<AExpr>,
}
Fields§
§lp_top: Node
§lp_arena: &'a Arena<IR>
§expr_arena: &'a Arena<AExpr>
Implementations§
Source§impl<'a> IRPlanRef<'a>
impl<'a> IRPlanRef<'a>
pub fn root(self) -> &'a IR
pub fn with_root(self, root: Node) -> Self
Sourcepub fn extract_streaming_plan(self) -> Option<IRPlanRef<'a>>
pub fn extract_streaming_plan(self) -> Option<IRPlanRef<'a>>
Extract the original logical plan if the plan is for the Streaming Engine
pub fn display(self) -> IRDisplay<'a>
pub fn display_dot(self) -> IRDotDisplay<'a>
pub fn describe(self) -> String
pub fn describe_tree_format(self) -> String
Trait Implementations§
impl<'a> Copy for IRPlanRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for IRPlanRef<'a>
impl<'a> !RefUnwindSafe for IRPlanRef<'a>
impl<'a> Send for IRPlanRef<'a>
impl<'a> Sync for IRPlanRef<'a>
impl<'a> Unpin for IRPlanRef<'a>
impl<'a> !UnwindSafe for IRPlanRef<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more