pub struct PgTableItem {
pub name: String,
pub table_id: usize,
pub col_index: usize,
pub type: PgType,
pub length: usize,
pub scale: usize,
pub nullable: bool,
pub default_val: Option<String>,
pub table_name: String,
pub create_time: String,
}Fields§
§name: String§table_id: usize§col_index: usize§type: PgType§length: usize§scale: usize§nullable: bool§default_val: Option<String>§table_name: String§create_time: StringTrait Implementations§
Source§impl Clone for PgTableItem
impl Clone for PgTableItem
Source§fn clone(&self) -> PgTableItem
fn clone(&self) -> PgTableItem
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 PgTableItem
impl RefUnwindSafe for PgTableItem
impl Send for PgTableItem
impl Sync for PgTableItem
impl Unpin for PgTableItem
impl UnwindSafe for PgTableItem
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