[−][src]Enum casperlabs_types::CLType
CasperLabs types, i.e. types which can be stored and manipulated by smart contracts.
Provides a description of the underlying data type of a CLValue.
Variants
bool primitive.
i32 primitive.
i64 primitive.
u8 primitive.
u32 primitive.
u64 primitive.
U128 large unsigned integer type.
U256 large unsigned integer type.
U512 large unsigned integer type.
() primitive.
String primitive.
Key system type.
URef system type.
Option of a CLType.
Variable-length list of a single CLType (comparable to a Vec).
Fixed-length list of a single CLType (comparable to a Rust array).
Result with Ok and Err variants of CLTypes.
Map with keys of a single CLType and values of a single CLType.
1-ary tuple of a CLType.
2-ary tuple of CLTypes.
3-ary tuple of CLTypes.
Unspecified type.
Methods
impl CLType[src]
pub fn serialized_len(&self) -> usize[src]
The len() of the Vec<u8> resulting from self.to_bytes().
Trait Implementations
impl Clone for CLType[src]
impl Debug for CLType[src]
impl Eq for CLType[src]
impl FromBytes for CLType[src]
fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>[src]
fn from_vec(bytes: Vec<u8>) -> Result<(Self, Vec<u8>), Error>[src]
impl PartialEq<CLType> for CLType[src]
impl StructuralEq for CLType[src]
impl StructuralPartialEq for CLType[src]
Auto Trait Implementations
impl RefUnwindSafe for CLType
impl Send for CLType
impl Sync for CLType
impl Unpin for CLType
impl UnwindSafe for CLType
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,