pub enum WindowsEvents {
Sysmon,
System,
Security,
Setup,
Application,
Other(String),
Unknown,
}Variants§
Sysmon
Sysmon event
System
System event
Security
Security event
Setup
Setup event
Application
Application event
Other(String)
Other events not defined. The value is the Channel of the event.
Unknown
Trait Implementations§
Source§impl Clone for WindowsEvents
impl Clone for WindowsEvents
Source§fn clone(&self) -> WindowsEvents
fn clone(&self) -> WindowsEvents
Returns a duplicate 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 WindowsEvents
impl Debug for WindowsEvents
Source§impl Default for WindowsEvents
impl Default for WindowsEvents
Source§fn default() -> WindowsEvents
fn default() -> WindowsEvents
Returns the “default value” for a type. Read more
Source§impl Display for WindowsEvents
impl Display for WindowsEvents
Source§impl Into<Artifact> for WindowsEvents
impl Into<Artifact> for WindowsEvents
Source§impl Into<WindowsEvents> for String
impl Into<WindowsEvents> for String
Source§fn into(self) -> WindowsEvents
fn into(self) -> WindowsEvents
Converts this type into the (usually inferred) input type.
Source§impl Ord for WindowsEvents
impl Ord for WindowsEvents
Source§fn cmp(&self, other: &WindowsEvents) -> Ordering
fn cmp(&self, other: &WindowsEvents) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WindowsEvents
impl PartialEq for WindowsEvents
Source§impl PartialOrd for WindowsEvents
impl PartialOrd for WindowsEvents
Source§impl Serialize for WindowsEvents
impl Serialize for WindowsEvents
impl Eq for WindowsEvents
impl StructuralPartialEq for WindowsEvents
Auto Trait Implementations§
impl Freeze for WindowsEvents
impl RefUnwindSafe for WindowsEvents
impl Send for WindowsEvents
impl Sync for WindowsEvents
impl Unpin for WindowsEvents
impl UnwindSafe for WindowsEvents
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