pub enum LogFilter {
Ignore,
Breadcrumb,
Event,
Exception,
Log,
}
Available on crate feature
log
only.Expand description
The action that Sentry should perform for a log::Metadata
.
Variants§
Ignore
Ignore the Record
.
Breadcrumb
Create a Breadcrumb
from this Record
.
Event
Exception
Log
Create a sentry_core::protocol::Log
from this Record
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogFilter
impl RefUnwindSafe for LogFilter
impl Send for LogFilter
impl Sync for LogFilter
impl Unpin for LogFilter
impl UnwindSafe for LogFilter
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