pub enum JournalEventKind {
LogEvent(LogEvent),
StatusEvent(Status),
OutfittingEvent(Outfitting),
ShipyardEvent(Shipyard),
MarketEvent(Market),
NavRoute(NavRoute),
ModulesInfo(ModulesInfo),
Backpack(Backpack),
Cargo(Cargo),
ShipLocker(ShipLocker),
}
Expand description
This event is fired from the [LiveJournalDirReader] when any change happens in the journal directory and includes all the possible models that could have been updated.
Variants§
LogEvent(LogEvent)
StatusEvent(Status)
OutfittingEvent(Outfitting)
ShipyardEvent(Shipyard)
MarketEvent(Market)
ModulesInfo(ModulesInfo)
Backpack(Backpack)
Cargo(Cargo)
ShipLocker(ShipLocker)
Trait Implementations§
Source§impl Clone for JournalEventKind
impl Clone for JournalEventKind
Source§fn clone(&self) -> JournalEventKind
fn clone(&self) -> JournalEventKind
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 JournalEventKind
impl Debug for JournalEventKind
Source§impl PartialEq for JournalEventKind
impl PartialEq for JournalEventKind
Source§impl Serialize for JournalEventKind
impl Serialize for JournalEventKind
impl StructuralPartialEq for JournalEventKind
Auto Trait Implementations§
impl Freeze for JournalEventKind
impl RefUnwindSafe for JournalEventKind
impl Send for JournalEventKind
impl Sync for JournalEventKind
impl Unpin for JournalEventKind
impl UnwindSafe for JournalEventKind
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