pub struct MvdsvClient {
pub id: u32,
pub name: String,
pub team: String,
pub frags: i32,
pub ping: u32,
pub time: u32,
pub top_color: u8,
pub bottom_color: u8,
pub skin: String,
pub is_spectator: bool,
}
Fields§
§id: u32
§name: String
§team: String
§frags: i32
§ping: u32
§time: u32
§top_color: u8
§bottom_color: u8
§skin: String
§is_spectator: bool
Trait Implementations§
Source§impl Clone for MvdsvClient
impl Clone for MvdsvClient
Source§fn clone(&self) -> MvdsvClient
fn clone(&self) -> MvdsvClient
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 MvdsvClient
impl Debug for MvdsvClient
Source§impl Default for MvdsvClient
impl Default for MvdsvClient
Source§fn default() -> MvdsvClient
fn default() -> MvdsvClient
Returns the “default value” for a type. Read more
Source§impl PartialEq for MvdsvClient
impl PartialEq for MvdsvClient
Source§impl TryFrom<&[u8]> for MvdsvClient
impl TryFrom<&[u8]> for MvdsvClient
impl Eq for MvdsvClient
impl StructuralPartialEq for MvdsvClient
Auto Trait Implementations§
impl Freeze for MvdsvClient
impl RefUnwindSafe for MvdsvClient
impl Send for MvdsvClient
impl Sync for MvdsvClient
impl Unpin for MvdsvClient
impl UnwindSafe for MvdsvClient
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