pub enum RowBinaryFormat {
RowBinary,
RowBinaryWithNames,
RowBinaryWithNamesAndTypes,
}Expand description
RowBinary variants supported by the crate.
Variants§
RowBinary
Plain RowBinary (no names, no types).
RowBinaryWithNames
RowBinary with column names.
RowBinaryWithNamesAndTypes
RowBinary with column names and types.
Trait Implementations§
Source§impl Clone for RowBinaryFormat
impl Clone for RowBinaryFormat
Source§fn clone(&self) -> RowBinaryFormat
fn clone(&self) -> RowBinaryFormat
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 moreSource§impl Debug for RowBinaryFormat
impl Debug for RowBinaryFormat
Source§impl Display for RowBinaryFormat
impl Display for RowBinaryFormat
Source§impl PartialEq for RowBinaryFormat
impl PartialEq for RowBinaryFormat
impl Copy for RowBinaryFormat
impl Eq for RowBinaryFormat
impl StructuralPartialEq for RowBinaryFormat
Auto Trait Implementations§
impl Freeze for RowBinaryFormat
impl RefUnwindSafe for RowBinaryFormat
impl Send for RowBinaryFormat
impl Sync for RowBinaryFormat
impl Unpin for RowBinaryFormat
impl UnwindSafe for RowBinaryFormat
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