Struct casper_types::runtime_args::RuntimeArgs [−][src]
Represents a collection of arguments passed to a smart contract.
Implementations
impl RuntimeArgs[src]
pub fn new() -> RuntimeArgs[src]
Create an empty RuntimeArgs instance.
pub fn try_new<F>(func: F) -> Result<RuntimeArgs, CLValueError> where
F: FnOnce(&mut RuntimeArgs) -> Result<(), CLValueError>, [src]
F: FnOnce(&mut RuntimeArgs) -> Result<(), CLValueError>,
A wrapper that lets you easily and safely create runtime arguments.
This method is useful when you have to construct a RuntimeArgs with multiple entries,
but error handling at given call site would require to have a match statement for each
RuntimeArgs::insert call. With this method you can use ? operator inside the closure and
then handle single result. When try_block will be stabilized this method could be
deprecated in favor of using those blocks.
pub fn get(&self, name: &str) -> Option<&CLValue>[src]
Gets an argument by its name.
pub fn len(&self) -> usize[src]
Get length of the collection.
pub fn is_empty(&self) -> bool[src]
Check if collection of arguments is empty.
pub fn insert<K, V>(&mut self, key: K, value: V) -> Result<(), CLValueError> where
K: Into<String>,
V: CLTyped + ToBytes, [src]
K: Into<String>,
V: CLTyped + ToBytes,
Insert new named argument into the collection.
pub fn insert_cl_value<K>(&mut self, key: K, cl_value: CLValue) where
K: Into<String>, [src]
K: Into<String>,
Insert new named argument into the collection.
pub fn to_values(&self) -> Vec<&CLValue>[src]
Returns values held regardless of the variant.
Trait Implementations
impl Clone for RuntimeArgs[src]
fn clone(&self) -> RuntimeArgs[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl DataSize for RuntimeArgs[src]
const IS_DYNAMIC: bool[src]
const STATIC_HEAP_SIZE: usize[src]
fn estimate_heap_size(&self) -> usize[src]
impl Debug for RuntimeArgs[src]
impl Default for RuntimeArgs[src]
fn default() -> RuntimeArgs[src]
impl<'de> Deserialize<'de> for RuntimeArgs[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Eq for RuntimeArgs[src]
impl From<BTreeMap<String, CLValue>> for RuntimeArgs[src]
impl From<Vec<NamedArg, Global>> for RuntimeArgs[src]
impl FromBytes for RuntimeArgs[src]
fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>[src]
fn from_vec(bytes: Vec<u8>) -> Result<(Self, Vec<u8>), Error>[src]
impl Hash for RuntimeArgs[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Into<BTreeMap<String, CLValue>> for RuntimeArgs[src]
impl Ord for RuntimeArgs[src]
fn cmp(&self, other: &RuntimeArgs) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<RuntimeArgs> for RuntimeArgs[src]
fn eq(&self, other: &RuntimeArgs) -> bool[src]
fn ne(&self, other: &RuntimeArgs) -> bool[src]
impl PartialOrd<RuntimeArgs> for RuntimeArgs[src]
fn partial_cmp(&self, other: &RuntimeArgs) -> Option<Ordering>[src]
fn lt(&self, other: &RuntimeArgs) -> bool[src]
fn le(&self, other: &RuntimeArgs) -> bool[src]
fn gt(&self, other: &RuntimeArgs) -> bool[src]
fn ge(&self, other: &RuntimeArgs) -> bool[src]
impl Serialize for RuntimeArgs[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for RuntimeArgs[src]
impl StructuralPartialEq for RuntimeArgs[src]
impl ToBytes for RuntimeArgs[src]
Auto Trait Implementations
impl RefUnwindSafe for RuntimeArgs[src]
impl Send for RuntimeArgs[src]
impl Sync for RuntimeArgs[src]
impl Unpin for RuntimeArgs[src]
impl UnwindSafe for RuntimeArgs[src]
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,