pub struct ChampionKill {
pub event_id: usize,
pub event_time: f64,
pub killer_name: String,
pub victim_name: String,
pub assisters: Vec<String>,
}Fields§
§event_id: usize§event_time: f64§killer_name: String§victim_name: String§assisters: Vec<String>Trait Implementations§
Source§impl Clone for ChampionKill
impl Clone for ChampionKill
Source§fn clone(&self) -> ChampionKill
fn clone(&self) -> ChampionKill
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 ChampionKill
impl Debug for ChampionKill
Source§impl<'de> Deserialize<'de> for ChampionKill
impl<'de> Deserialize<'de> for ChampionKill
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 ChampionKill
impl PartialEq for ChampionKill
Source§fn eq(&self, other: &ChampionKill) -> bool
fn eq(&self, other: &ChampionKill) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChampionKill
Auto Trait Implementations§
impl Freeze for ChampionKill
impl RefUnwindSafe for ChampionKill
impl Send for ChampionKill
impl Sync for ChampionKill
impl Unpin for ChampionKill
impl UnsafeUnpin for ChampionKill
impl UnwindSafe for ChampionKill
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