pub trait PlaceholderExt<T> {
// Required method
fn with_placeholder_matching_items<F: Fn(&Item<T>) -> bool + 'static>(
self,
name_matches_item_pairs: impl IntoIterator<Item = (&'static str, F)>,
) -> Self;
}
Required Methods§
fn with_placeholder_matching_items<F: Fn(&Item<T>) -> bool + 'static>( self, name_matches_item_pairs: impl IntoIterator<Item = (&'static str, F)>, ) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.