pub trait Filler<F> {
// Required methods
fn apply(&mut self, filler: F);
fn new_empty_filler() -> F;
}Required Methods§
Sourcefn new_empty_filler() -> F
fn new_empty_filler() -> F
Get an empty filler instance
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".