pub struct DefaultFilter;
Expand description
This is default implementation of RecordFilter
trait which check
method always return true
.
It should be constructed using Default::default
method.
Trait Implementations§
Source§impl Clone for DefaultFilter
impl Clone for DefaultFilter
Source§fn clone(&self) -> DefaultFilter
fn clone(&self) -> DefaultFilter
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DefaultFilter
impl Debug for DefaultFilter
Source§impl Default for DefaultFilter
impl Default for DefaultFilter
Source§fn default() -> DefaultFilter
fn default() -> DefaultFilter
Returns the “default value” for a type. Read more
Source§impl RecordFilter for Box<DefaultFilter>
impl RecordFilter for Box<DefaultFilter>
Source§impl RecordFilter for DefaultFilter
impl RecordFilter for DefaultFilter
impl Copy for DefaultFilter
Auto Trait Implementations§
impl Freeze for DefaultFilter
impl RefUnwindSafe for DefaultFilter
impl Send for DefaultFilter
impl Sync for DefaultFilter
impl Unpin for DefaultFilter
impl UnwindSafe for DefaultFilter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more