Struct sqlparser::ast::LateralView
source · [−]pub struct LateralView {
pub lateral_view: Expr,
pub lateral_view_name: ObjectName,
pub lateral_col_alias: Vec<Ident>,
pub outer: bool,
}
Expand description
A hive LATERAL VIEW with potential column aliases
Fields
lateral_view: Expr
LATERAL VIEW
lateral_view_name: ObjectName
LATERAL VIEW table name
lateral_col_alias: Vec<Ident>
LATERAL VIEW optional column aliases
outer: bool
LATERAL VIEW OUTER
Trait Implementations
sourceimpl Clone for LateralView
impl Clone for LateralView
sourcefn clone(&self) -> LateralView
fn clone(&self) -> LateralView
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for LateralView
impl Debug for LateralView
sourceimpl Display for LateralView
impl Display for LateralView
sourceimpl Hash for LateralView
impl Hash for LateralView
sourceimpl PartialEq<LateralView> for LateralView
impl PartialEq<LateralView> for LateralView
sourcefn eq(&self, other: &LateralView) -> bool
fn eq(&self, other: &LateralView) -> bool
impl Eq for LateralView
impl StructuralEq for LateralView
impl StructuralPartialEq for LateralView
Auto Trait Implementations
impl RefUnwindSafe for LateralView
impl Send for LateralView
impl Sync for LateralView
impl Unpin for LateralView
impl UnwindSafe for LateralView
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more