pub struct Record {
pub title: String,
pub place: String,
pub date: Date,
pub mode: Option<Mode>,
pub speed: Option<Speed>,
pub nation: Option<u8>,
pub category: Option<u8>,
pub rounds: Option<u8>,
pub games: usize,
pub first_game: usize,
}Fields§
§title: String§place: String§date: Date§mode: Option<Mode>§speed: Option<Speed>§nation: Option<u8>§category: Option<u8>§rounds: Option<u8>§games: usize§first_game: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Record
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnsafeUnpin for Record
impl UnwindSafe for Record
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