pub struct ColumnDesc {
pub name: String,
pub table_oid: u32,
pub col_attr: i16,
pub type_oid: u32,
pub type_size: i16,
pub type_modifier: i32,
pub format_code: FormatCode,
}Expand description
A column descriptor from RowDescription.
Fields§
§name: String§table_oid: u32§col_attr: i16§type_oid: u32§type_size: i16§type_modifier: i32§format_code: FormatCodeTrait 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 · 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 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