pub enum PrimitiveValueType {
Show 13 variants
Bool,
S8,
U8,
S16,
U16,
S32,
U32,
S64,
U64,
F32,
F64,
Chr,
Str,
}
Variants§
Trait Implementations§
source§impl Clone for PrimitiveValueType
impl Clone for PrimitiveValueType
source§fn clone(&self) -> PrimitiveValueType
fn clone(&self) -> PrimitiveValueType
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 PrimitiveValueType
impl Debug for PrimitiveValueType
source§impl From<&PrimitiveValueType> for AnalysedType
impl From<&PrimitiveValueType> for AnalysedType
source§fn from(value: &PrimitiveValueType) -> Self
fn from(value: &PrimitiveValueType) -> Self
Converts to this type from the input type.
source§impl From<&PrimitiveValueType> for PrimitiveValType
impl From<&PrimitiveValueType> for PrimitiveValType
source§fn from(value: &PrimitiveValueType) -> Self
fn from(value: &PrimitiveValueType) -> Self
Converts to this type from the input type.
source§impl PartialEq for PrimitiveValueType
impl PartialEq for PrimitiveValueType
source§fn eq(&self, other: &PrimitiveValueType) -> bool
fn eq(&self, other: &PrimitiveValueType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<PrimitiveValType> for PrimitiveValueType
impl TryFrom<PrimitiveValType> for PrimitiveValueType
impl Eq for PrimitiveValueType
impl StructuralPartialEq for PrimitiveValueType
Auto Trait Implementations§
impl Freeze for PrimitiveValueType
impl RefUnwindSafe for PrimitiveValueType
impl Send for PrimitiveValueType
impl Sync for PrimitiveValueType
impl Unpin for PrimitiveValueType
impl UnwindSafe for PrimitiveValueType
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.