pub trait Apply<T> {
// Required methods
fn apply(self, action: impl FnMut(T));
fn apply2<U, Second: IntoIterator<Item = U>>(
self,
second: Second,
action: impl FnMut(T, U)
);
}Required Methods§
fn apply(self, action: impl FnMut(T))
fn apply2<U, Second: IntoIterator<Item = U>>( self, second: Second, action: impl FnMut(T, U) )
Object Safety§
This trait is not object safe.