Enum sqlparser::ast::CopyLegacyCsvOption
source · pub enum CopyLegacyCsvOption {
Header,
Quote(char),
Escape(char),
ForceQuote(Vec<Ident>),
ForceNotNull(Vec<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<Ident>)
FORCE QUOTE { column_name [, …] | * }
ForceNotNull(Vec<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 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 for CopyLegacyCsvOption
impl PartialEq 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 for CopyLegacyCsvOption
impl PartialOrd 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 moreimpl Eq for CopyLegacyCsvOption
impl StructuralEq for CopyLegacyCsvOption
impl StructuralPartialEq for CopyLegacyCsvOption
Auto Trait Implementations§
impl RefUnwindSafe for CopyLegacyCsvOption
impl Send for CopyLegacyCsvOption
impl Sync for CopyLegacyCsvOption
impl Unpin for CopyLegacyCsvOption
impl UnwindSafe for CopyLegacyCsvOption
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