Skip to main content

FilterValue

Trait FilterValue 

Source
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§

Source

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.

Implementors§