[−][src]Struct casper_types::runtime_args::RuntimeArgs
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]
pub fn clone(&self) -> RuntimeArgs[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for RuntimeArgs[src]
impl Default for RuntimeArgs[src]
pub fn default() -> RuntimeArgs[src]
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]
pub fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>[src]
pub fn from_vec(bytes: Vec<u8>) -> Result<(Self, Vec<u8>), Error>[src]
impl Into<BTreeMap<String, CLValue>> for RuntimeArgs[src]
impl PartialEq<RuntimeArgs> for RuntimeArgs[src]
pub fn eq(&self, other: &RuntimeArgs) -> bool[src]
pub fn ne(&self, other: &RuntimeArgs) -> bool[src]
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> 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>,