pub enum EngineerProgressStartupProgress {
Unlocked,
Invited,
Known,
}
Expand description
The status for a given engineer.
Variants§
Unlocked
The engineer has been unlocked and the player can apply upgrades at this engineer.
Invited
The player has been invited to the engineer, but still needs to complete their unlock task.
Known
The engineer is known, but the player has not unlocked the engineer or has been invited.
Trait Implementations§
Source§impl Clone for EngineerProgressStartupProgress
impl Clone for EngineerProgressStartupProgress
Source§fn clone(&self) -> EngineerProgressStartupProgress
fn clone(&self) -> EngineerProgressStartupProgress
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<'de> Deserialize<'de> for EngineerProgressStartupProgress
impl<'de> Deserialize<'de> for EngineerProgressStartupProgress
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 PartialEq for EngineerProgressStartupProgress
impl PartialEq for EngineerProgressStartupProgress
Source§fn eq(&self, other: &EngineerProgressStartupProgress) -> bool
fn eq(&self, other: &EngineerProgressStartupProgress) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for EngineerProgressStartupProgress
Auto Trait Implementations§
impl Freeze for EngineerProgressStartupProgress
impl RefUnwindSafe for EngineerProgressStartupProgress
impl Send for EngineerProgressStartupProgress
impl Sync for EngineerProgressStartupProgress
impl Unpin for EngineerProgressStartupProgress
impl UnwindSafe for EngineerProgressStartupProgress
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