Struct sqlparser::ast::SelectInto
source · pub struct SelectInto {
pub temporary: bool,
pub unlogged: bool,
pub table: bool,
pub name: ObjectName,
}
Fields§
§temporary: bool
§unlogged: bool
§table: bool
§name: ObjectName
Trait Implementations§
source§impl Clone for SelectInto
impl Clone for SelectInto
source§fn clone(&self) -> SelectInto
fn clone(&self) -> SelectInto
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 SelectInto
impl Debug for SelectInto
source§impl<'de> Deserialize<'de> for SelectInto
impl<'de> Deserialize<'de> for SelectInto
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 SelectInto
impl Display for SelectInto
source§impl Hash for SelectInto
impl Hash for SelectInto
source§impl Ord for SelectInto
impl Ord for SelectInto
source§fn cmp(&self, other: &SelectInto) -> Ordering
fn cmp(&self, other: &SelectInto) -> 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<SelectInto> for SelectInto
impl PartialEq<SelectInto> for SelectInto
source§fn eq(&self, other: &SelectInto) -> bool
fn eq(&self, other: &SelectInto) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<SelectInto> for SelectInto
impl PartialOrd<SelectInto> for SelectInto
source§fn partial_cmp(&self, other: &SelectInto) -> Option<Ordering>
fn partial_cmp(&self, other: &SelectInto) -> 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 more