Finalizer

Trait Finalizer 

Source
pub trait Finalizer {
    // Required method
    fn finalize(&self, atom: &dyn Atom) -> Result<bool>;
}
Expand description

Finalizers allow us to store data within the manifests KV store, or to end the execution of atoms for the action

Required Methods§

Source

fn finalize(&self, atom: &dyn Atom) -> Result<bool>

Implementors§