pub enum Rust {
Bool,
Bytes,
Float,
Map,
Object,
SignedInt,
String,
UnsignedInt,
Vec,
}
Expand description
Classes of Rust types.
Variants§
Bool
Rust bool
type.
Bytes
Rust Vec<u8>
type.
Float
Rust float type.
Float width is dependent on interpreter implementation and architecture.
Map
Rust HashMap<K, V>
type.
Object
Arbitrary Rust struct type.
SignedInt
Rust signed integer type.
Int width is dependent on interpreter implementation and architecture.
String
Rust String
type.
UnsignedInt
Rust unsigned integer type.
Int width is dependent on interpreter implementation and architecture.
Vec
Rust Vec<T>
type.
Trait Implementations§
source§impl Ord for Rust
impl Ord for Rust
source§impl PartialEq<Rust> for Rust
impl PartialEq<Rust> for Rust
source§impl PartialOrd<Rust> for Rust
impl PartialOrd<Rust> for Rust
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