pub struct DamageStats2 {
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 DamageStats2
impl Clone for DamageStats2
Source§fn clone(&self) -> DamageStats2
fn clone(&self) -> DamageStats2
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 DamageStats2
impl Debug for DamageStats2
Source§impl Default for DamageStats2
impl Default for DamageStats2
Source§fn default() -> DamageStats2
fn default() -> DamageStats2
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DamageStats2
impl<'de> Deserialize<'de> for DamageStats2
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 DamageStats2
impl PartialEq for DamageStats2
Source§impl Serialize for DamageStats2
impl Serialize for DamageStats2
impl StructuralPartialEq for DamageStats2
Auto Trait Implementations§
impl Freeze for DamageStats2
impl RefUnwindSafe for DamageStats2
impl Send for DamageStats2
impl Sync for DamageStats2
impl Unpin for DamageStats2
impl UnwindSafe for DamageStats2
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