pub trait PackExt: Pack {
// Provided method
fn filter(&mut self, f: impl Fn(&str) -> bool + Send + Sync) -> impl Pack
where Self: Sized { ... }
}Expand description
The pack trait extension.
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".