pub struct JournalEvent {
pub is_live: bool,
pub kind: JournalEventKind,
}
Fields§
§is_live: bool
Indicates whether the event was fired from a change in the journal directory or whether it’s an event from a log file other than the current one.
kind: JournalEventKind
Trait Implementations§
Source§impl Clone for JournalEvent
impl Clone for JournalEvent
Source§fn clone(&self) -> JournalEvent
fn clone(&self) -> JournalEvent
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 JournalEvent
impl Debug for JournalEvent
Auto Trait Implementations§
impl Freeze for JournalEvent
impl RefUnwindSafe for JournalEvent
impl Send for JournalEvent
impl Sync for JournalEvent
impl Unpin for JournalEvent
impl UnwindSafe for JournalEvent
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