pub struct SmartModuleAggregateInput {
pub base: SmartModuleInput,
pub accumulator: Vec<u8>,
}
Expand description
A type to pass input to an Aggregate SmartModule WASM module
Fields§
§base: SmartModuleInput
The base input required by all SmartModules
accumulator: Vec<u8>
The current value of the Aggregate’s accumulator
Trait Implementations§
Source§impl Clone for SmartModuleAggregateInput
impl Clone for SmartModuleAggregateInput
Source§fn clone(&self) -> SmartModuleAggregateInput
fn clone(&self) -> SmartModuleAggregateInput
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SmartModuleAggregateInput
impl Debug for SmartModuleAggregateInput
Source§impl Decoder for SmartModuleAggregateInput
impl Decoder for SmartModuleAggregateInput
Source§impl Default for SmartModuleAggregateInput
impl Default for SmartModuleAggregateInput
Source§fn default() -> SmartModuleAggregateInput
fn default() -> SmartModuleAggregateInput
Returns the “default value” for a type. Read more
Source§impl Encoder for SmartModuleAggregateInput
impl Encoder for SmartModuleAggregateInput
Auto Trait Implementations§
impl Freeze for SmartModuleAggregateInput
impl RefUnwindSafe for SmartModuleAggregateInput
impl Send for SmartModuleAggregateInput
impl Sync for SmartModuleAggregateInput
impl Unpin for SmartModuleAggregateInput
impl UnwindSafe for SmartModuleAggregateInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more