[−][src]Enum casper_types::CLType
Casper 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.
PublicKey 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.
Implementations
impl CLType[src]
pub fn serialized_length(&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<'de> Deserialize<'de> for CLType[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
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 Serialize for CLType[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
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,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
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.
pub fn to_owned(&self) -> T[src]
pub 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.
pub 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>,