pub trait FilterValue: Default + 'static {
type Value: Debug;
// Required method
fn set_filter(&mut self, value: Self::Value);
}Expand description
Ability to set filter
Required Associated Types§
Required Methods§
Sourcefn set_filter(&mut self, value: Self::Value)
fn set_filter(&mut self, value: Self::Value)
Update the filter
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.