pub struct Record {Show 16 fields
pub meta: Meta,
pub game_offset: usize,
pub annotation_offset: Option<usize>,
pub white: usize,
pub black: usize,
pub tournament: usize,
pub annotator: Option<usize>,
pub source: usize,
pub date: Date,
pub outcome: Outcome,
pub round: Option<u8>,
pub subround: Option<u8>,
pub white_elo: Option<u16>,
pub black_elo: Option<u16>,
pub medals: Flags,
pub eco: Option<Eco>,
}Fields§
§meta: Meta§game_offset: usize§annotation_offset: Option<usize>§white: usize§black: usize§tournament: usize§annotator: Option<usize>§source: usize§date: Date§outcome: Outcome§round: Option<u8>§subround: Option<u8>§white_elo: Option<u16>§black_elo: Option<u16>§medals: Flags§eco: Option<Eco>Trait 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