pub enum StationType {
Show 13 variants
AsteroidBase,
Bernal,
Orbis,
Coriolis,
Ocellus,
Outpost,
FleetCarrier,
MegaShip,
CraterOutpost,
CraterPort,
OnFootSettlement,
SurfaceStation,
Unknown(String),
}
Variants§
AsteroidBase
Bernal
Orbis
Coriolis
Ocellus
Outpost
FleetCarrier
MegaShip
CraterOutpost
CraterPort
OnFootSettlement
SurfaceStation
Unknown(String)
Available on crate feature
allow-unknown
only.Trait Implementations§
Source§impl Clone for StationType
impl Clone for StationType
Source§fn clone(&self) -> StationType
fn clone(&self) -> StationType
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 StationType
impl Debug for StationType
Source§impl<'de> Deserialize<'de> for StationType
impl<'de> Deserialize<'de> for StationType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for StationType
impl Display for StationType
Source§impl PartialEq for StationType
impl PartialEq for StationType
Source§impl Serialize for StationType
impl Serialize for StationType
impl StructuralPartialEq for StationType
Auto Trait Implementations§
impl Freeze for StationType
impl RefUnwindSafe for StationType
impl Send for StationType
impl Sync for StationType
impl Unpin for StationType
impl UnwindSafe for StationType
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