pub struct LeagueRecord {
pub wins: u8,
pub losses: u8,
pub pct: String,
}Fields§
§wins: u8§losses: u8§pct: StringTrait Implementations§
Source§impl Debug for LeagueRecord
impl Debug for LeagueRecord
Source§impl Default for LeagueRecord
impl Default for LeagueRecord
Source§fn default() -> LeagueRecord
fn default() -> LeagueRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LeagueRecord
impl<'de> Deserialize<'de> for LeagueRecord
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
Auto Trait Implementations§
impl Freeze for LeagueRecord
impl RefUnwindSafe for LeagueRecord
impl Send for LeagueRecord
impl Sync for LeagueRecord
impl Unpin for LeagueRecord
impl UnsafeUnpin for LeagueRecord
impl UnwindSafe for LeagueRecord
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