pub enum BasicType {
Show 28 variants
Invalid,
Bool,
Int,
Int8,
Int16,
Int32,
Int64,
Uint,
Uint8,
Uint16,
Uint32,
Uint64,
Uintptr,
Float32,
Float64,
Complex64,
Complex128,
Str,
UnsafePointer,
UntypedBool,
UntypedInt,
UntypedRune,
UntypedFloat,
UntypedComplex,
UntypedString,
UntypedNil,
Byte,
Rune,
}
Variants§
Invalid
Bool
Int
Int8
Int16
Int32
Int64
Uint
Uint8
Uint16
Uint32
Uint64
Uintptr
Float32
Float64
Complex64
Complex128
Str
UnsafePointer
UntypedBool
UntypedInt
UntypedRune
UntypedFloat
UntypedComplex
UntypedString
UntypedNil
Byte
Rune
Implementations§
Trait Implementations§
source§impl Ord for BasicType
impl Ord for BasicType
source§impl PartialEq<BasicType> for BasicType
impl PartialEq<BasicType> for BasicType
source§impl PartialOrd<BasicType> for BasicType
impl PartialOrd<BasicType> for BasicType
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more