pub enum TyPrimitive {
bool,
int8,
int16,
int32,
int64,
uint8,
uint16,
uint32,
uint64,
float32,
float64,
text,
}Variants§
Trait Implementations§
Source§impl Clone for TyPrimitive
impl Clone for TyPrimitive
Source§fn clone(&self) -> TyPrimitive
fn clone(&self) -> TyPrimitive
Returns a duplicate 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 TyPrimitive
impl Debug for TyPrimitive
Source§impl Encode for TyPrimitive
impl Encode for TyPrimitive
Source§impl From<TyPrimitive> for TyKind
impl From<TyPrimitive> for TyKind
Source§fn from(value: TyPrimitive) -> Self
fn from(value: TyPrimitive) -> Self
Converts to this type from the input type.
Source§impl Hash for TyPrimitive
impl Hash for TyPrimitive
Source§impl Layout for TyPrimitive
impl Layout for TyPrimitive
Source§impl PartialEq for TyPrimitive
impl PartialEq for TyPrimitive
impl Copy for TyPrimitive
impl Eq for TyPrimitive
impl StructuralPartialEq for TyPrimitive
Auto Trait Implementations§
impl Freeze for TyPrimitive
impl RefUnwindSafe for TyPrimitive
impl Send for TyPrimitive
impl Sync for TyPrimitive
impl Unpin for TyPrimitive
impl UnsafeUnpin for TyPrimitive
impl UnwindSafe for TyPrimitive
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