edjr 0.1.1

Elite Dangerous Journal Reader
Documentation
pub mod ammo;
pub mod approach;
pub mod backpack;
pub mod body;
pub mod bounty;
pub mod cargo;
pub mod codex;
pub mod colonisation;
pub mod commander;
pub mod community_goal;
pub mod consumable;
pub mod crew;
pub mod crime;
pub mod data;
pub mod died;
pub mod disembark;
pub mod dock;
pub mod drones;
pub mod embark;
pub mod engineer;
pub mod exploration;
pub mod faction;
pub mod fc;
pub mod fighter;
pub mod fileheader;
pub mod fines;
pub mod friends;
pub mod fsd;
pub mod fss;
pub mod fuel;
pub mod game;
pub mod heat;
pub mod hull;
pub mod impound;
pub mod interdiction;
pub mod jetcone;
pub mod jump;
pub mod liftoff;
pub mod loadout;
pub mod location;
pub mod market;
pub mod material;
pub mod mission;
pub mod module;
pub mod music;
pub mod navigation;
pub mod outfitting;
pub mod passengers;
pub mod powerplay;
pub mod pvp;
pub mod ranks;
pub mod repair;
pub mod reputation;
pub mod squadron;
pub mod srv;
pub mod supercruise;
pub mod taxi;
pub mod text;
pub mod touchdown;
pub mod under_attack;
pub mod uss;
pub mod voucher;
pub mod weapon;
pub mod wing;

pub use {
    ammo::BuyAmmoEvent,
    approach::{ApproachBodyEvent, ApproachSettlementEvent},
    backpack::{BackpackChangeEvent, BackpackEvent},
    body::LeaveBodyEvent,
    bounty::{BountyEvent, PayBountiesEvent},
    cargo::{CargoDepotEvent, CargoEvent, CargoTransferEvent, CollectCargoEvent, EjectCargoEvent},
    codex::CodexEntryEvent,
    colonisation::ColonisationConstructionDepotEvent,
    commander::{CommanderEvent, NewCommanderEvent},
    community_goal::{
        CommunityGoalDiscardEvent, CommunityGoalEvent, CommunityGoalJoinEvent,
        CommunityGoalRewardEvent,
    },
    consumable::UseConsumableEvent,
    crew::{
        ChangeCrewRoleEvent, CrewAssignEvent, CrewLaunchFighterEvent, CrewMemberJoinsEvent,
        CrewMemberQuitsEvent, CrewMemberRoleChangeEvent, EndCrewSessionEvent, JoinACrewEvent,
        NpcCrewPaidWageEvent, QuitACrewEvent,
    },
    crime::{CommitCrimeEvent, CrimeVictimEvent},
    data::{DataScannedEvent, DatalinkScanEvent, DatalinkVoucherEvent},
    died::DiedEvent,
    disembark::DisembarkEvent,
    dock::{
        DockedEvent, DockingCancelledEvent, DockingDeniedEvent, DockingGrantedEvent,
        DockingRequestedEvent, DockingTimeoutEvent, UndockedEvent,
    },
    drones::{BuyDronesEvent, LaunchDroneEvent},
    embark::EmbarkEvent,
    engineer::{EngineerContributionEvent, EngineerCraftEvent, EngineerProgressEvent},
    exploration::MultiSellExplorationDataEvent,
    faction::FactionKillBondEvent,
    fc::{CarrierJumpEvent, FcMaterialsEvent},
    fighter::{DockFighterEvent, FighterDestroyedEvent, FighterRebuiltEvent, LaunchFighterEvent},
    fileheader::FileheaderEvent,
    fines::PayFinesEvent,
    friends::FriendsEvent,
    fsd::{FsdJumpEvent, FsdTargetEvent},
    fss::{
        FssAllBodiesFoundEvent, FssBodySignalsEvent, FssDiscoveryScanEvent,
        FssSignalDiscoveredEvent,
    },
    fuel::{FuelScoopEvent, RefuelAllEvent, RefuelPartialEvent},
    game::LoadGameEvent,
    heat::{HeatDamageEvent, HeatWarningEvent},
    hull::HullDamageEvent,
    impound::ClearImpoundEvent,
    interdiction::{EscapeInterdictionEvent, InterdictedEvent, InterdictionEvent},
    jetcone::{JetConeBoostEvent, JetConeDamageEvent},
    jump::StartJumpEvent,
    liftoff::LiftoffEvent,
    loadout::LoadoutEvent,
    location::LocationEvent,
    market::{MarketBuyEvent, MarketEvent, MarketSellEvent},
    material::{
        MaterialCollectedEvent, MaterialDiscoveredEvent, MaterialTradeEvent, MaterialsEvent,
    },
    mission::{
        MissionAbandonedEvent, MissionAcceptedEvent, MissionCompletedEvent, MissionFailedEvent,
        MissionRedirectedEvent, MissionsEvent,
    },
    module::{
        FetchRemoteModuleEvent, MassModuleStoreEvent, ModuleBuyAndStoreEvent, ModuleBuyEvent,
        ModuleRetrieveEvent, ModuleSellEvent, ModuleSellRemoteEvent, ModuleStoreEvent,
        ModuleSwapEvent,
    },
    music::MusicEvent,
    navigation::NavBeaconScanEvent,
    outfitting::OutfittingEvent,
    passengers::PassengersEvent,
    powerplay::{PowerplayCollectEvent, PowerplayEvent, PowerplayMeritsEvent, PowerplayRankEvent},
    pvp::PvpKillEvent,
    ranks::{ProgressEvent, PromotionEvent, RankEvent},
    repair::{AfmuRepairsEvent, RebootRepairEvent, RepairAllEvent, RepairDroneEvent, RepairEvent},
    reputation::ReputationEvent,
    squadron::{
        InvitedToSquadronEvent, JoinedSquadronEvent, LeftSquadronEvent, SquadronCreatedEvent,
        SquadronStartupEvent,
    },
    srv::{DockSrvEvent, LaunchSrvEvent},
    supercruise::{SupercruiseDestinationDropEvent, SupercruiseEntryEvent, SupercruiseExitEvent},
    taxi::BookTaxiEvent,
    text::ReceiveTextEvent,
    touchdown::TouchdownEvent,
    under_attack::UnderAttackEvent,
    uss::UssDropEvent,
    voucher::RedeemVoucherEvent,
    weapon::BuyWeaponEvent,
    wing::{WingAddEvent, WingInviteEvent, WingJoinEvent},
};