pub struct MatchupEntry {
pub char_name: Option<String>,
pub char_short: Option<String>,
pub wins: Option<i64>,
pub total_games: Option<i64>,
}Fields§
§char_name: Option<String>§char_short: Option<String>§wins: Option<i64>§total_games: Option<i64>Implementations§
Source§impl MatchupEntry
impl MatchupEntry
pub fn new() -> MatchupEntry
Trait Implementations§
Source§impl Clone for MatchupEntry
impl Clone for MatchupEntry
Source§fn clone(&self) -> MatchupEntry
fn clone(&self) -> MatchupEntry
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 MatchupEntry
impl Debug for MatchupEntry
Source§impl Default for MatchupEntry
impl Default for MatchupEntry
Source§fn default() -> MatchupEntry
fn default() -> MatchupEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MatchupEntry
impl<'de> Deserialize<'de> for MatchupEntry
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 MatchupEntry
impl PartialEq for MatchupEntry
Source§impl Serialize for MatchupEntry
impl Serialize for MatchupEntry
impl StructuralPartialEq for MatchupEntry
Auto Trait Implementations§
impl Freeze for MatchupEntry
impl RefUnwindSafe for MatchupEntry
impl Send for MatchupEntry
impl Sync for MatchupEntry
impl Unpin for MatchupEntry
impl UnsafeUnpin for MatchupEntry
impl UnwindSafe for MatchupEntry
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