pub struct KillCountEntry {
pub index: usize,
pub name: String,
pub count: i32,
}Fields§
§index: usize§name: String§count: i32Trait Implementations§
Source§impl Clone for KillCountEntry
impl Clone for KillCountEntry
Source§fn clone(&self) -> KillCountEntry
fn clone(&self) -> KillCountEntry
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 KillCountEntry
impl Debug for KillCountEntry
Source§impl<'de> Deserialize<'de> for KillCountEntry
impl<'de> Deserialize<'de> for KillCountEntry
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 KillCountEntry
impl PartialEq for KillCountEntry
Source§impl Serialize for KillCountEntry
impl Serialize for KillCountEntry
impl Eq for KillCountEntry
impl StructuralPartialEq for KillCountEntry
Auto Trait Implementations§
impl Freeze for KillCountEntry
impl RefUnwindSafe for KillCountEntry
impl Send for KillCountEntry
impl Sync for KillCountEntry
impl Unpin for KillCountEntry
impl UnsafeUnpin for KillCountEntry
impl UnwindSafe for KillCountEntry
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