pub trait ExecuteMut<'c, C>where
Self: Sized,{
type ExecuteMutOutput;
type QueryMutOutput;
// Required methods
fn execute_mut(self, cli: &'c mut C) -> Self::ExecuteMutOutput;
fn query_mut(self, cli: &'c mut C) -> Self::QueryMutOutput;
}
Expand description
mutable version of Execute
trait where C type is mutably borrowed
Required Associated Types§
Required Methods§
fn execute_mut(self, cli: &'c mut C) -> Self::ExecuteMutOutput
fn query_mut(self, cli: &'c mut C) -> Self::QueryMutOutput
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.