pub struct CqlColumnDef {
pub name: CqlIdentifier,
pub data_type: CqlDataType,
pub is_static: bool,
}Expand description
Column definition
Fields§
§name: CqlIdentifierColumn name
data_type: CqlDataTypeData type
is_static: boolSTATIC modifier
Trait Implementations§
Source§impl Clone for CqlColumnDef
impl Clone for CqlColumnDef
Source§fn clone(&self) -> CqlColumnDef
fn clone(&self) -> CqlColumnDef
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 CqlColumnDef
impl Debug for CqlColumnDef
Source§impl<'de> Deserialize<'de> for CqlColumnDef
impl<'de> Deserialize<'de> for CqlColumnDef
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CqlColumnDef
impl PartialEq for CqlColumnDef
Source§fn eq(&self, other: &CqlColumnDef) -> bool
fn eq(&self, other: &CqlColumnDef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CqlColumnDef
impl Serialize for CqlColumnDef
impl StructuralPartialEq for CqlColumnDef
Auto Trait Implementations§
impl Freeze for CqlColumnDef
impl RefUnwindSafe for CqlColumnDef
impl Send for CqlColumnDef
impl Sync for CqlColumnDef
impl Unpin for CqlColumnDef
impl UnsafeUnpin for CqlColumnDef
impl UnwindSafe for CqlColumnDef
Blanket Implementations§
impl<T> Allocation for T
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