pub enum BuiltinTypeId {
Show 20 variants
U8,
U16,
U32,
U64,
I8,
I16,
I32,
I64,
F32,
F64,
Bool,
String,
Uuid,
DateTime,
List,
Array,
Dict,
Option,
Promise,
Result,
}Variants§
U8
U16
U32
U64
I8
I16
I32
I64
F32
F64
Bool
String
Uuid
DateTime
List
Array
Dict
Option
Promise
Result
Implementations§
Trait Implementations§
Source§impl Clone for BuiltinTypeId
impl Clone for BuiltinTypeId
Source§fn clone(&self) -> BuiltinTypeId
fn clone(&self) -> BuiltinTypeId
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 BuiltinTypeId
impl Debug for BuiltinTypeId
Source§impl Hash for BuiltinTypeId
impl Hash for BuiltinTypeId
Source§impl Ord for BuiltinTypeId
impl Ord for BuiltinTypeId
Source§fn cmp(&self, other: &BuiltinTypeId) -> Ordering
fn cmp(&self, other: &BuiltinTypeId) -> 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 BuiltinTypeId
impl PartialEq for BuiltinTypeId
Source§fn eq(&self, other: &BuiltinTypeId) -> bool
fn eq(&self, other: &BuiltinTypeId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BuiltinTypeId
impl PartialOrd for BuiltinTypeId
impl Copy for BuiltinTypeId
impl Eq for BuiltinTypeId
impl StructuralPartialEq for BuiltinTypeId
Auto Trait Implementations§
impl Freeze for BuiltinTypeId
impl RefUnwindSafe for BuiltinTypeId
impl Send for BuiltinTypeId
impl Sync for BuiltinTypeId
impl Unpin for BuiltinTypeId
impl UnsafeUnpin for BuiltinTypeId
impl UnwindSafe for BuiltinTypeId
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