pub struct DamageStats {
pub magic_damage_done: i64,
pub magic_damage_done_to_champions: i64,
pub magic_damage_taken: i64,
pub physical_damage_done: i64,
pub physical_damage_done_to_champions: i64,
pub physical_damage_taken: i64,
pub total_damage_done: i64,
pub total_damage_done_to_champions: i64,
pub total_damage_taken: i64,
pub true_damage_done: i64,
pub true_damage_done_to_champions: i64,
pub true_damage_taken: i64,
}Fields§
§magic_damage_done: i64§magic_damage_done_to_champions: i64§magic_damage_taken: i64§physical_damage_done: i64§physical_damage_done_to_champions: i64§physical_damage_taken: i64§total_damage_done: i64§total_damage_done_to_champions: i64§total_damage_taken: i64§true_damage_done: i64§true_damage_done_to_champions: i64§true_damage_taken: i64Trait Implementations§
Source§impl Clone for DamageStats
impl Clone for DamageStats
Source§fn clone(&self) -> DamageStats
fn clone(&self) -> DamageStats
Returns a duplicate 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 DamageStats
impl Debug for DamageStats
Source§impl Default for DamageStats
impl Default for DamageStats
Source§fn default() -> DamageStats
fn default() -> DamageStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DamageStats
impl<'de> Deserialize<'de> for DamageStats
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 DamageStats
impl PartialEq for DamageStats
Source§impl Serialize for DamageStats
impl Serialize for DamageStats
impl StructuralPartialEq for DamageStats
Auto Trait Implementations§
impl Freeze for DamageStats
impl RefUnwindSafe for DamageStats
impl Send for DamageStats
impl Sync for DamageStats
impl Unpin for DamageStats
impl UnwindSafe for DamageStats
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