pub trait ApiOperation<C, P> {
type Output;
type Error;
// Required method
fn execute(
context: &mut C,
parameters: &P,
) -> Result<Self::Output, Self::Error>;
}Expand description
Core trait that all API operations implement.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.