pub struct EventXpMalwareRemediated<'a> { /* private fields */ }Available on crate feature
macos_13_0_0 and macOS only.Expand description
XProtect remediated malware.
Implementations§
Source§impl<'a> EventXpMalwareRemediated<'a>
impl<'a> EventXpMalwareRemediated<'a>
Sourcepub fn signature_version(&self) -> &'a OsStr
pub fn signature_version(&self) -> &'a OsStr
Version of the signatures used for detection. Currently corresponds to XProtect version.
Sourcepub fn malware_identifier(&self) -> &'a OsStr
pub fn malware_identifier(&self) -> &'a OsStr
String identifying the malware that was remediated.
Sourcepub fn incident_identifier(&self) -> &'a OsStr
pub fn incident_identifier(&self) -> &'a OsStr
String identifying the incident, intended for linking multiple malware remediated and remediated events.
Sourcepub fn action_type(&self) -> &'a OsStr
pub fn action_type(&self) -> &'a OsStr
String indicating the type of action that was taken, e.g. “path_delete”.
Sourcepub fn result_description(&self) -> &'a OsStr
pub fn result_description(&self) -> &'a OsStr
String describing specific reasons for failure or success.
Sourcepub fn remediated_path(&self) -> &'a OsStr
pub fn remediated_path(&self) -> &'a OsStr
Optional. Path that was subject to remediation, if any. This path is not necessarily a malicious binary, it can also be a legitimate file containing a malicious portion. Specifically, the file at this path may still exist after successful remediation.
Sourcepub fn remediated_process_audit_token(&self) -> Option<AuditToken>
pub fn remediated_process_audit_token(&self) -> Option<AuditToken>
Audit token of process that was subject to remediation, if any.
Trait Implementations§
Source§impl<'a> Debug for EventXpMalwareRemediated<'a>
impl<'a> Debug for EventXpMalwareRemediated<'a>
Source§impl<'a> Hash for EventXpMalwareRemediated<'a>
impl<'a> Hash for EventXpMalwareRemediated<'a>
Source§impl<'a> PartialEq for EventXpMalwareRemediated<'a>
impl<'a> PartialEq for EventXpMalwareRemediated<'a>
impl<'a> Eq for EventXpMalwareRemediated<'a>
impl Send for EventXpMalwareRemediated<'_>
impl Sync for EventXpMalwareRemediated<'_>
Auto Trait Implementations§
impl<'a> Freeze for EventXpMalwareRemediated<'a>
impl<'a> RefUnwindSafe for EventXpMalwareRemediated<'a>
impl<'a> Unpin for EventXpMalwareRemediated<'a>
impl<'a> UnwindSafe for EventXpMalwareRemediated<'a>
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