Skip to main content

AggOutputFunc

Trait AggOutputFunc 

Source
pub trait AggOutputFunc<A: ?Sized, O: ?Sized>: Fn(&mut A, &mut O) + DynClone { }

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<A: ?Sized, O: ?Sized, F> AggOutputFunc<A, O> for F
where F: Fn(&mut A, &mut O) + Clone,