pub struct CrontabEntry {
pub pid: u64,
pub comm: String,
pub line: String,
}Expand description
A crontab entry recovered from process memory.
Fields§
§pid: u64PID of the process where the entry was found.
comm: StringProcess name.
line: StringThe raw crontab line (e.g. “0 * * * * /usr/bin/backup.sh”).
Trait Implementations§
Source§impl Clone for CrontabEntry
impl Clone for CrontabEntry
Source§fn clone(&self) -> CrontabEntry
fn clone(&self) -> CrontabEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CrontabEntry
impl Debug for CrontabEntry
impl Eq for CrontabEntry
Source§impl PartialEq for CrontabEntry
impl PartialEq for CrontabEntry
Source§fn eq(&self, other: &CrontabEntry) -> bool
fn eq(&self, other: &CrontabEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CrontabEntry
Auto Trait Implementations§
impl Freeze for CrontabEntry
impl RefUnwindSafe for CrontabEntry
impl Send for CrontabEntry
impl Sync for CrontabEntry
impl Unpin for CrontabEntry
impl UnsafeUnpin for CrontabEntry
impl UnwindSafe for CrontabEntry
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.