pub enum ScalarKind {
String,
Boolean(bool),
DateTime,
Float,
Integer(IntegerRadix),
}Variants§
Implementations§
Source§impl ScalarKind
impl ScalarKind
pub fn description(&self) -> &'static str
pub fn invalid_description(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ScalarKind
impl Clone for ScalarKind
Source§fn clone(&self) -> ScalarKind
fn clone(&self) -> ScalarKind
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 ScalarKind
impl Debug for ScalarKind
Source§impl Hash for ScalarKind
impl Hash for ScalarKind
Source§impl Ord for ScalarKind
impl Ord for ScalarKind
Source§fn cmp(&self, other: &ScalarKind) -> Ordering
fn cmp(&self, other: &ScalarKind) -> Ordering
1.21.0 (const: unstable) · 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 ScalarKind
impl PartialEq for ScalarKind
Source§fn eq(&self, other: &ScalarKind) -> bool
fn eq(&self, other: &ScalarKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ScalarKind
impl PartialOrd for ScalarKind
impl Copy for ScalarKind
impl Eq for ScalarKind
impl StructuralPartialEq for ScalarKind
Auto Trait Implementations§
impl Freeze for ScalarKind
impl RefUnwindSafe for ScalarKind
impl Send for ScalarKind
impl Sync for ScalarKind
impl Unpin for ScalarKind
impl UnsafeUnpin for ScalarKind
impl UnwindSafe for ScalarKind
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