pub struct CopyHeader {
pub schema: Option<String>,
pub table: String,
pub columns: Vec<String>,
}Expand description
Result of parsing a COPY header
Fields§
§schema: Option<String>Schema name (e.g., “public”)
table: StringTable name
columns: Vec<String>Column list (may be empty if not specified)
Trait Implementations§
Source§impl Clone for CopyHeader
impl Clone for CopyHeader
Source§fn clone(&self) -> CopyHeader
fn clone(&self) -> CopyHeader
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CopyHeader
impl RefUnwindSafe for CopyHeader
impl Send for CopyHeader
impl Sync for CopyHeader
impl Unpin for CopyHeader
impl UnwindSafe for CopyHeader
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)