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.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".