pub struct MassEvent {
pub time_h: f64,
pub kind: MassEventKind,
pub episode: u8,
pub label: String,
}Expand description
A discrete mass-changing event in the ship’s timeline.
Fields§
§time_h: f64Mission elapsed time at event start (hours from EP01 departure).
kind: MassEventKindType of mass change.
episode: u8Episode number (1-5).
label: StringHuman-readable label (Japanese).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MassEvent
impl RefUnwindSafe for MassEvent
impl Send for MassEvent
impl Sync for MassEvent
impl Unpin for MassEvent
impl UnwindSafe for MassEvent
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