Enum sqlparser::ast::CopyLegacyCsvOption
source · pub enum CopyLegacyCsvOption {
Header,
Quote(char),
Escape(char),
ForceQuote(Vec<Located<Ident>>),
ForceNotNull(Vec<Located<Ident>>),
}
Expand description
A CSV
option in COPY
statement before PostgreSQL version 9.0.
Variants§
Header
HEADER
Quote(char)
QUOTE [ AS ] ‘quote_character’
Escape(char)
ESCAPE [ AS ] ‘escape_character’
ForceQuote(Vec<Located<Ident>>)
FORCE QUOTE { column_name [, …] | * }
ForceNotNull(Vec<Located<Ident>>)
FORCE NOT NULL column_name [, …]
Trait Implementations§
source§impl Clone for CopyLegacyCsvOption
impl Clone for CopyLegacyCsvOption
source§fn clone(&self) -> CopyLegacyCsvOption
fn clone(&self) -> CopyLegacyCsvOption
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 CopyLegacyCsvOption
impl Debug for CopyLegacyCsvOption
source§impl<'de> Deserialize<'de> for CopyLegacyCsvOption
impl<'de> Deserialize<'de> for CopyLegacyCsvOption
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 CopyLegacyCsvOption
impl Display for CopyLegacyCsvOption
source§impl Hash for CopyLegacyCsvOption
impl Hash for CopyLegacyCsvOption
source§impl Ord for CopyLegacyCsvOption
impl Ord for CopyLegacyCsvOption
source§fn cmp(&self, other: &CopyLegacyCsvOption) -> Ordering
fn cmp(&self, other: &CopyLegacyCsvOption) -> 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<CopyLegacyCsvOption> for CopyLegacyCsvOption
impl PartialEq<CopyLegacyCsvOption> for CopyLegacyCsvOption
source§fn eq(&self, other: &CopyLegacyCsvOption) -> bool
fn eq(&self, other: &CopyLegacyCsvOption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<CopyLegacyCsvOption> for CopyLegacyCsvOption
impl PartialOrd<CopyLegacyCsvOption> for CopyLegacyCsvOption
source§fn partial_cmp(&self, other: &CopyLegacyCsvOption) -> Option<Ordering>
fn partial_cmp(&self, other: &CopyLegacyCsvOption) -> 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