pub enum FileHeaderInfo {
NONE,
IGNORE,
USE,
}Expand description
Describes the first line of input.
Valid Values: USE | IGNORE | NONE.
Default: IGNORE
Variants§
NONE
First line is not a header.
IGNORE
First line is a header, but you can’t use the header values to indicate the column in an expression.
You can use column position (such as _1, _2, …) to indicate the column (SELECT s._1 FROM OBJECT s).
USE
First line is a header, and you can use the header value to identify a column in an expression (SELECT "name" FROM OBJECT).
Trait Implementations§
Source§impl Clone for FileHeaderInfo
impl Clone for FileHeaderInfo
Source§fn clone(&self) -> FileHeaderInfo
fn clone(&self) -> FileHeaderInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FileHeaderInfo
Source§impl Debug for FileHeaderInfo
impl Debug for FileHeaderInfo
Source§impl Default for FileHeaderInfo
impl Default for FileHeaderInfo
Source§fn default() -> FileHeaderInfo
fn default() -> FileHeaderInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileHeaderInfo
impl RefUnwindSafe for FileHeaderInfo
impl Send for FileHeaderInfo
impl Sync for FileHeaderInfo
impl Unpin for FileHeaderInfo
impl UnsafeUnpin for FileHeaderInfo
impl UnwindSafe for FileHeaderInfo
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