pub enum ShipStatus {
Unknown,
Active,
Stored(u64),
Transferring(TransferringShipStatus),
}
Expand description
The status of the ship.
Variants§
Unknown
The current status of the ship is not known.
Active
The ship is the current active ship for the player.
Stored(u64)
The ship is currently stored.
Transferring(TransferringShipStatus)
The ship is currently being transferred between two locations.
Trait Implementations§
Source§impl Debug for ShipStatus
impl Debug for ShipStatus
Auto Trait Implementations§
impl Freeze for ShipStatus
impl RefUnwindSafe for ShipStatus
impl Send for ShipStatus
impl Sync for ShipStatus
impl Unpin for ShipStatus
impl UnwindSafe for ShipStatus
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