pub struct RowDescription {
pub name: Bytes,
pub table_oid: u32,
pub column_attr: u16,
pub data_type_oid: u32,
pub data_type_size: i16,
pub type_modifier: i32,
pub format: u16,
}
Expand description
TODO(ppiotr3k): write description
Fields§
§name: Bytes
§table_oid: u32
§column_attr: u16
§data_type_oid: u32
§data_type_size: i16
§type_modifier: i32
§format: u16
Trait Implementations§
Source§impl Clone for RowDescription
impl Clone for RowDescription
Source§fn clone(&self) -> RowDescription
fn clone(&self) -> RowDescription
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 RowDescription
impl Debug for RowDescription
Source§impl PartialEq for RowDescription
impl PartialEq for RowDescription
impl Eq for RowDescription
impl StructuralPartialEq for RowDescription
Auto Trait Implementations§
impl !Freeze for RowDescription
impl RefUnwindSafe for RowDescription
impl Send for RowDescription
impl Sync for RowDescription
impl Unpin for RowDescription
impl UnwindSafe for RowDescription
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