pub struct GetCharactersCharacterIdFwStatsKills { /* private fields */ }Implementations§
Source§impl GetCharactersCharacterIdFwStatsKills
impl GetCharactersCharacterIdFwStatsKills
Sourcepub fn new(
yesterday: i32,
total: i32,
last_week: i32,
) -> GetCharactersCharacterIdFwStatsKills
pub fn new( yesterday: i32, total: i32, last_week: i32, ) -> GetCharactersCharacterIdFwStatsKills
Summary of kills done by the given character against enemy factions
pub fn set_yesterday(&mut self, yesterday: i32)
pub fn with_yesterday( self, yesterday: i32, ) -> GetCharactersCharacterIdFwStatsKills
pub fn yesterday(&self) -> &i32
pub fn set_total(&mut self, total: i32)
pub fn with_total(self, total: i32) -> GetCharactersCharacterIdFwStatsKills
pub fn total(&self) -> &i32
pub fn set_last_week(&mut self, last_week: i32)
pub fn with_last_week( self, last_week: i32, ) -> GetCharactersCharacterIdFwStatsKills
pub fn last_week(&self) -> &i32
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GetCharactersCharacterIdFwStatsKills
impl<'de> Deserialize<'de> for GetCharactersCharacterIdFwStatsKills
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 GetCharactersCharacterIdFwStatsKills
impl RefUnwindSafe for GetCharactersCharacterIdFwStatsKills
impl Send for GetCharactersCharacterIdFwStatsKills
impl Sync for GetCharactersCharacterIdFwStatsKills
impl Unpin for GetCharactersCharacterIdFwStatsKills
impl UnwindSafe for GetCharactersCharacterIdFwStatsKills
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more