pub struct SQLColumnInfo {
pub name: String,
pub ordinal_position: u32,
pub data_type: String,
pub is_nullable: bool,
pub column_default: Option<String>,
pub is_primary_key: bool,
pub is_unique: bool,
}Fields§
§name: String§ordinal_position: u32§data_type: String§is_nullable: bool§column_default: Option<String>§is_primary_key: bool§is_unique: boolTrait Implementations§
Source§impl Clone for SQLColumnInfo
impl Clone for SQLColumnInfo
Source§fn clone(&self) -> SQLColumnInfo
fn clone(&self) -> SQLColumnInfo
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 SQLColumnInfo
impl RefUnwindSafe for SQLColumnInfo
impl Send for SQLColumnInfo
impl Sync for SQLColumnInfo
impl Unpin for SQLColumnInfo
impl UnsafeUnpin for SQLColumnInfo
impl UnwindSafe for SQLColumnInfo
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