pub enum NativeType {
Show 21 variants
Ascii,
Bigint,
Blob,
Boolean,
Counter,
Date,
Decimal,
Double,
Duration,
Float,
Inet,
Int,
Smallint,
Text,
Time,
Timestamp,
Timeuuid,
Tinyint,
Uuid,
Varchar,
Varint,
}
Variants§
Ascii
Bigint
Blob
Boolean
Counter
Date
Decimal
Double
Duration
Float
Inet
Int
Smallint
Text
Time
Timestamp
Timeuuid
Tinyint
Uuid
Varchar
Varint
Trait Implementations§
Source§impl Clone for NativeType
impl Clone for NativeType
Source§fn clone(&self) -> NativeType
fn clone(&self) -> NativeType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for NativeType
impl<'a> CustomToTokens<'a> for NativeType
Source§impl Debug for NativeType
impl Debug for NativeType
Source§impl Display for NativeType
impl Display for NativeType
Source§impl From<NativeType> for CqlType
impl From<NativeType> for CqlType
Source§fn from(original: NativeType) -> CqlType
fn from(original: NativeType) -> CqlType
Converts to this type from the input type.
Source§impl FromStr for NativeType
impl FromStr for NativeType
Source§impl Hash for NativeType
impl Hash for NativeType
Source§impl Ord for NativeType
impl Ord for NativeType
Source§fn cmp(&self, other: &NativeType) -> Ordering
fn cmp(&self, other: &NativeType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl Parse for NativeType
impl Parse for NativeType
Source§impl PartialEq for NativeType
impl PartialEq for NativeType
Source§impl PartialOrd for NativeType
impl PartialOrd for NativeType
Source§impl ToTokens for NativeType
impl ToTokens for NativeType
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Copy for NativeType
impl Eq for NativeType
impl StructuralPartialEq for NativeType
Auto Trait Implementations§
impl Freeze for NativeType
impl RefUnwindSafe for NativeType
impl Send for NativeType
impl Sync for NativeType
impl Unpin for NativeType
impl UnwindSafe for NativeType
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