pub struct EsiCharacterFwStats {
pub faction_id: Option<i32>,
pub enlisted_on: Option<DateTime<Utc>>,
pub current_rank: Option<i32>,
pub highest_rank: Option<i32>,
pub kills: Option<EsiFwTotals>,
pub victory_points: Option<EsiFwTotals>,
}Expand description
Character FW stats.
Fields§
§faction_id: Option<i32>§enlisted_on: Option<DateTime<Utc>>§current_rank: Option<i32>§highest_rank: Option<i32>§kills: Option<EsiFwTotals>§victory_points: Option<EsiFwTotals>Trait Implementations§
Source§impl Clone for EsiCharacterFwStats
impl Clone for EsiCharacterFwStats
Source§fn clone(&self) -> EsiCharacterFwStats
fn clone(&self) -> EsiCharacterFwStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EsiCharacterFwStats
impl Debug for EsiCharacterFwStats
Source§impl<'de> Deserialize<'de> for EsiCharacterFwStats
impl<'de> Deserialize<'de> for EsiCharacterFwStats
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
Auto Trait Implementations§
impl Freeze for EsiCharacterFwStats
impl RefUnwindSafe for EsiCharacterFwStats
impl Send for EsiCharacterFwStats
impl Sync for EsiCharacterFwStats
impl Unpin for EsiCharacterFwStats
impl UnsafeUnpin for EsiCharacterFwStats
impl UnwindSafe for EsiCharacterFwStats
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