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
Object Safety§
This trait is not object safe.