pub struct EngineerProgressStartupEntry {
pub engineer: Option<String>,
pub engineer_id: Option<Engineer>,
pub progress: Option<EngineerProgressStartupProgress>,
pub rank: Option<u8>,
pub rank_progress: Option<f32>,
}
Expand description
Entry for a single engineer and the progress.
Fields§
§engineer: Option<String>
The name of the engineer.
engineer_id: Option<Engineer>
The id of the engineer.
progress: Option<EngineerProgressStartupProgress>
The current progress unlock status.
rank: Option<u8>
The currently unlocked rank or highest possible ‘tier’ for the engineer.
rank_progress: Option<f32>
The current progress towards the next rank.
Trait Implementations§
Source§impl Clone for EngineerProgressStartupEntry
impl Clone for EngineerProgressStartupEntry
Source§fn clone(&self) -> EngineerProgressStartupEntry
fn clone(&self) -> EngineerProgressStartupEntry
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 EngineerProgressStartupEntry
impl Debug for EngineerProgressStartupEntry
Source§impl<'de> Deserialize<'de> for EngineerProgressStartupEntry
impl<'de> Deserialize<'de> for EngineerProgressStartupEntry
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 EngineerProgressStartupEntry
impl PartialEq for EngineerProgressStartupEntry
Source§fn eq(&self, other: &EngineerProgressStartupEntry) -> bool
fn eq(&self, other: &EngineerProgressStartupEntry) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for EngineerProgressStartupEntry
Auto Trait Implementations§
impl Freeze for EngineerProgressStartupEntry
impl RefUnwindSafe for EngineerProgressStartupEntry
impl Send for EngineerProgressStartupEntry
impl Sync for EngineerProgressStartupEntry
impl Unpin for EngineerProgressStartupEntry
impl UnwindSafe for EngineerProgressStartupEntry
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