pub trait Apply<Rhs> {
type Output;
// Required method
fn apply(&self, rhs: Rhs) -> Self::Output;
}Expand description
Apply is a composable binary operator generally used to apply some object or function
onto the caller to produce some output.