pub struct ColumnDesc {
pub name: String,
pub ty: WireType,
pub nullable: bool,
}Expand description
Column metadata sent in a RowDescription frame.
Fields§
§name: String§ty: WireType§nullable: boolTrait Implementations§
Source§impl Clone for ColumnDesc
impl Clone for ColumnDesc
Source§fn clone(&self) -> ColumnDesc
fn clone(&self) -> ColumnDesc
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 moreSource§impl Debug for ColumnDesc
impl Debug for ColumnDesc
impl Eq for ColumnDesc
Source§impl PartialEq for ColumnDesc
impl PartialEq for ColumnDesc
Source§fn eq(&self, other: &ColumnDesc) -> bool
fn eq(&self, other: &ColumnDesc) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ColumnDesc
Auto Trait Implementations§
impl Freeze for ColumnDesc
impl RefUnwindSafe for ColumnDesc
impl Send for ColumnDesc
impl Sync for ColumnDesc
impl Unpin for ColumnDesc
impl UnsafeUnpin for ColumnDesc
impl UnwindSafe for ColumnDesc
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