pub struct SmartModuleAggregateOutput {
pub base: SmartModuleOutput,
pub accumulator: Vec<u8>,
}Expand description
A type used to return processed records and/or an error from an Aggregate SmartModule
Fields§
§base: SmartModuleOutputThe base output required by all SmartModules
accumulator: Vec<u8>Implementations§
source§impl SmartModuleAggregateOutput
impl SmartModuleAggregateOutput
pub fn new(base: SmartModuleOutput, accumulator: Vec<u8>) -> Self
Trait Implementations§
source§impl Debug for SmartModuleAggregateOutput
impl Debug for SmartModuleAggregateOutput
source§impl Decoder for SmartModuleAggregateOutput
impl Decoder for SmartModuleAggregateOutput
source§impl Default for SmartModuleAggregateOutput
impl Default for SmartModuleAggregateOutput
source§fn default() -> SmartModuleAggregateOutput
fn default() -> SmartModuleAggregateOutput
Returns the “default value” for a type. Read more