Trait Execute

Source
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.

Required Associated Types§

Required Methods§

Source

fn execute(self, rhs: Rhs) -> Self::Output

Implementors§