pub enum TSDataType {
Boolean = 0,
Int32 = 1,
Int64 = 2,
Float = 3,
Double = 4,
Text = 5,
}
Variants§
Trait Implementations§
Source§impl Clone for TSDataType
impl Clone for TSDataType
Source§fn clone(&self) -> TSDataType
fn clone(&self) -> TSDataType
Returns a copy 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 moreSource§impl Debug for TSDataType
impl Debug for TSDataType
Source§impl From<&String> for TSDataType
impl From<&String> for TSDataType
Source§impl From<TSDataType> for i32
impl From<TSDataType> for i32
Source§fn from(t: TSDataType) -> i32
fn from(t: TSDataType) -> i32
Converts to this type from the input type.
Source§impl Hash for TSDataType
impl Hash for TSDataType
Source§impl Ord for TSDataType
impl Ord for TSDataType
Source§fn cmp(&self, other: &TSDataType) -> Ordering
fn cmp(&self, other: &TSDataType) -> 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 PartialEq for TSDataType
impl PartialEq for TSDataType
Source§impl PartialOrd for TSDataType
impl PartialOrd for TSDataType
impl Eq for TSDataType
impl StructuralPartialEq for TSDataType
Auto Trait Implementations§
impl Freeze for TSDataType
impl RefUnwindSafe for TSDataType
impl Send for TSDataType
impl Sync for TSDataType
impl Unpin for TSDataType
impl UnwindSafe for TSDataType
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