pub enum Response {
Accept,
Neutral,
Reject,
}
Expand description
The response returned by a filter.
Variants
Accept
Accept the log event.
It will be immediately passed to the appender, bypassing any remaining filters.
Neutral
Take no action on the log event.
It will continue on to remaining filters or pass on to the appender if there are none remaining.
Reject
Reject the log event.
Auto Trait Implementations
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more