pub struct CopyInResponse {
pub format: FormatCode,
pub column_formats: Vec<FormatCode>,
}Expand description
CopyInResponse message - server is ready to receive COPY data.
Fields§
§format: FormatCodeOverall format (0=text, 1=binary)
column_formats: Vec<FormatCode>Per-column format codes
Implementations§
Trait Implementations§
Source§impl Clone for CopyInResponse
impl Clone for CopyInResponse
Source§fn clone(&self) -> CopyInResponse
fn clone(&self) -> CopyInResponse
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CopyInResponse
impl RefUnwindSafe for CopyInResponse
impl Send for CopyInResponse
impl Sync for CopyInResponse
impl Unpin for CopyInResponse
impl UnwindSafe for CopyInResponse
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