pub trait StoreEvent: Event {
type Output;
// Required methods
fn result(&self) -> Result<Self::Output, Error>;
fn error(&self) -> Error;
}Expand description
Trait for defining events triggered when operations are performed on an object store.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".