pub trait Apply<Rhs> {
type Output;
// Required method
fn apply(&self, rhs: Rhs) -> Self::Output;
}Expand description
Apply establishes a binary operator for applying a given object, typically a function or
closure, onto a target object, producing some output.