pub struct StatisticsCrew {
pub npc_crew_total_wages: Option<u64>,
pub npc_crew_hired: Option<u32>,
pub npc_crew_fired: Option<u32>,
pub npc_crew_died: Option<u32>,
}
Fields§
§npc_crew_total_wages: Option<u64>
§npc_crew_hired: Option<u32>
§npc_crew_fired: Option<u32>
§npc_crew_died: Option<u32>
Trait Implementations§
Source§impl Clone for StatisticsCrew
impl Clone for StatisticsCrew
Source§fn clone(&self) -> StatisticsCrew
fn clone(&self) -> StatisticsCrew
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 StatisticsCrew
impl Debug for StatisticsCrew
Source§impl<'de> Deserialize<'de> for StatisticsCrew
impl<'de> Deserialize<'de> for StatisticsCrew
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 StatisticsCrew
impl PartialEq for StatisticsCrew
Source§impl Serialize for StatisticsCrew
impl Serialize for StatisticsCrew
impl StructuralPartialEq for StatisticsCrew
Auto Trait Implementations§
impl Freeze for StatisticsCrew
impl RefUnwindSafe for StatisticsCrew
impl Send for StatisticsCrew
impl Sync for StatisticsCrew
impl Unpin for StatisticsCrew
impl UnwindSafe for StatisticsCrew
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