pub enum EventLevel {
LogAlways,
Critical,
Error,
Warning,
Information,
AuditSuccess,
AuditFailure,
}Variants§
Trait Implementations§
Source§impl Display for EventLevel
impl Display for EventLevel
Source§impl Serialize for EventLevel
impl Serialize for EventLevel
Source§impl TryFrom<&SerializedEvtxRecord<Value>> for EventLevel
impl TryFrom<&SerializedEvtxRecord<Value>> for EventLevel
Source§fn try_from(
value: &SerializedEvtxRecord<Value>,
) -> Result<Self, <EventLevel as TryFrom<&SerializedEvtxRecord<Value>>>::Error>
fn try_from( value: &SerializedEvtxRecord<Value>, ) -> Result<Self, <EventLevel as TryFrom<&SerializedEvtxRecord<Value>>>::Error>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for EventLevel
impl RefUnwindSafe for EventLevel
impl Send for EventLevel
impl Sync for EventLevel
impl Unpin for EventLevel
impl UnwindSafe for EventLevel
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more