pub enum ExplorationRank {
Show 15 variants
Aimless,
MostlyAimless,
Scout,
Surveyor,
Trailblazer,
Pathfinder,
Ranger,
Pioneer,
Elite,
EliteI,
EliteII,
EliteIII,
EliteIV,
EliteV,
Unknown(u8),
}
Variants§
Aimless
MostlyAimless
Scout
Surveyor
Trailblazer
Pathfinder
Ranger
Pioneer
Elite
EliteI
EliteII
EliteIII
EliteIV
EliteV
Unknown(u8)
Available on crate feature
allow-unknown
only.Trait Implementations§
Source§impl Clone for ExplorationRank
impl Clone for ExplorationRank
Source§fn clone(&self) -> ExplorationRank
fn clone(&self) -> ExplorationRank
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 ExplorationRank
impl Debug for ExplorationRank
Source§impl<'de> Deserialize<'de> for ExplorationRank
impl<'de> Deserialize<'de> for ExplorationRank
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 ExplorationRank
impl Display for ExplorationRank
Source§impl PartialEq for ExplorationRank
impl PartialEq for ExplorationRank
Source§impl Serialize for ExplorationRank
impl Serialize for ExplorationRank
Source§impl TryFrom<u8> for ExplorationRank
impl TryFrom<u8> for ExplorationRank
impl StructuralPartialEq for ExplorationRank
Auto Trait Implementations§
impl Freeze for ExplorationRank
impl RefUnwindSafe for ExplorationRank
impl Send for ExplorationRank
impl Sync for ExplorationRank
impl Unpin for ExplorationRank
impl UnwindSafe for ExplorationRank
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