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: ExprLATERAL VIEW
lateral_view_name: ObjectNameLATERAL VIEW table name
lateral_col_alias: Vec<Ident>LATERAL VIEW optional column aliases
outer: boolLATERAL VIEW OUTER
Trait Implementations§
source§impl Clone for LateralView
 
impl Clone for LateralView
source§fn clone(&self) -> LateralView
 
fn clone(&self) -> LateralView
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for LateralView
 
impl Debug for LateralView
source§impl<'de> Deserialize<'de> for LateralView
 
impl<'de> Deserialize<'de> for LateralView
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for LateralView
 
impl Display for LateralView
source§impl Hash for LateralView
 
impl Hash for LateralView
source§impl Ord for LateralView
 
impl Ord for LateralView
source§fn cmp(&self, other: &LateralView) -> Ordering
 
fn cmp(&self, other: &LateralView) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for LateralView
 
impl PartialEq for LateralView
source§fn eq(&self, other: &LateralView) -> bool
 
fn eq(&self, other: &LateralView) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd for LateralView
 
impl PartialOrd for LateralView
source§fn partial_cmp(&self, other: &LateralView) -> Option<Ordering>
 
fn partial_cmp(&self, other: &LateralView) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moresource§impl Serialize for LateralView
 
impl Serialize for LateralView
source§impl Visit for LateralView
 
impl Visit for LateralView
source§impl VisitMut for LateralView
 
impl VisitMut for LateralView
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
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§
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