Trait steno::ActionData

source ·
pub trait ActionData: Debug + DeserializeOwned + Serialize + Send + Sync + 'static { }
Expand description

Data produced by the consumer that may need to be serialized to the saga log

This type is used for saga parameters and the output data and errors from an individual action. It’s essentially a synonym for `Debug + DeserializeOwned

  • Serialize + Send + Sync`. Consumers are not expected to impl this directly.

Implementors§

source§

impl<T: Debug + DeserializeOwned + Serialize + Send + Sync + 'static> ActionData for T