pub trait MagicArgs {
// Required method
fn apply<C, T>(self, f: C) -> C::Output
where C: Callable<Self, T>,
Self: Sized;
}Expand description
A convinience trait to provide the args.apply(f) syntax.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".