pub struct ColumnSchema {
pub name: String,
pub type_name: String,
pub key: bool,
}Fields§
§name: String§type_name: String§key: boolTrait Implementations§
Source§impl Clone for ColumnSchema
impl Clone for ColumnSchema
Source§fn clone(&self) -> ColumnSchema
fn clone(&self) -> ColumnSchema
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 ColumnSchema
impl Debug for ColumnSchema
impl Eq for ColumnSchema
Source§impl PartialEq for ColumnSchema
impl PartialEq for ColumnSchema
Source§fn eq(&self, other: &ColumnSchema) -> bool
fn eq(&self, other: &ColumnSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ColumnSchema
Auto Trait Implementations§
impl Freeze for ColumnSchema
impl RefUnwindSafe for ColumnSchema
impl Send for ColumnSchema
impl Sync for ColumnSchema
impl Unpin for ColumnSchema
impl UnsafeUnpin for ColumnSchema
impl UnwindSafe for ColumnSchema
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