pub enum LinuxArtifacts {
Log(String),
ShellHistory(String),
Cron(String),
Service(LinuxService),
Other(String),
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for LinuxArtifacts
impl Clone for LinuxArtifacts
Source§fn clone(&self) -> LinuxArtifacts
fn clone(&self) -> LinuxArtifacts
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 LinuxArtifacts
impl Debug for LinuxArtifacts
Source§impl Default for LinuxArtifacts
impl Default for LinuxArtifacts
Source§fn default() -> LinuxArtifacts
fn default() -> LinuxArtifacts
Returns the “default value” for a type. Read more
Source§impl Display for LinuxArtifacts
impl Display for LinuxArtifacts
Source§impl Ord for LinuxArtifacts
impl Ord for LinuxArtifacts
Source§fn cmp(&self, other: &LinuxArtifacts) -> Ordering
fn cmp(&self, other: &LinuxArtifacts) -> 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 LinuxArtifacts
impl PartialEq for LinuxArtifacts
Source§impl PartialOrd for LinuxArtifacts
impl PartialOrd for LinuxArtifacts
impl Eq for LinuxArtifacts
impl StructuralPartialEq for LinuxArtifacts
Auto Trait Implementations§
impl Freeze for LinuxArtifacts
impl RefUnwindSafe for LinuxArtifacts
impl Send for LinuxArtifacts
impl Sync for LinuxArtifacts
impl Unpin for LinuxArtifacts
impl UnwindSafe for LinuxArtifacts
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