Enum forensic_rs::artifact::WindowsEvents
source · pub enum WindowsEvents {
Sysmon,
System,
Security,
Other(String),
Unknown,
}Variants§
Sysmon
Sysmon event
System
System event
Security
Security 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 copy 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§fn eq(&self, other: &WindowsEvents) -> bool
fn eq(&self, other: &WindowsEvents) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for WindowsEvents
impl PartialOrd for WindowsEvents
source§fn partial_cmp(&self, other: &WindowsEvents) -> Option<Ordering>
fn partial_cmp(&self, other: &WindowsEvents) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl Serialize for WindowsEvents
impl Serialize for WindowsEvents
impl Eq for WindowsEvents
impl StructuralEq for WindowsEvents
impl StructuralPartialEq for WindowsEvents
Auto Trait Implementations§
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