pub enum ScalarKind {
Null,
Bool,
Number,
String,
}Expand description
The four AFDATA scalar “kinds” the heterogeneous-overwrite guard
distinguishes. Number covers Integer/Unsigned/Float/
Value::Number — the guard cares whether VALUE would change a scalar
from one of these kinds to a bare string, not which numeric
representation was in play.
Variants§
Implementations§
Source§impl ScalarKind
impl ScalarKind
Sourcepub fn value_type_name(self) -> &'static str
pub fn value_type_name(self) -> &'static str
The --value-type spelling that keeps a value of this kind.
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 moreimpl Copy for ScalarKind
Source§impl Debug for ScalarKind
impl Debug for ScalarKind
impl Eq for ScalarKind
Source§impl PartialEq for ScalarKind
impl PartialEq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.