pub trait Execute<Rhs> {
type Output;
// Required method
fn execute(self, rhs: Rhs) -> Self::Output;
}Expand description
A trait denoting the ability to execute a given operation, transaction, etc.
pub trait Execute<Rhs> {
type Output;
// Required method
fn execute(self, rhs: Rhs) -> Self::Output;
}A trait denoting the ability to execute a given operation, transaction, etc.