slog

Trait FilterFn

Source
pub trait FilterFn:
    'static
    + Sync
    + Send
    + UnwindSafe
    + RefUnwindSafe
    + Fn(&Record<'_>) -> bool { }
Expand description

Function that can be used in Filter drain

Implementors§

Source§

impl<T> FilterFn for T
where T: 'static + Sync + Send + ?Sized + UnwindSafe + RefUnwindSafe + Fn(&Record<'_>) -> bool,