pub enum RatingType {
Elo,
Rating,
Rapid,
ICCF,
USCF,
DWZ,
ECF,
Unknown(u8),
}
Expand description
The various kinds of rating system SCID allows the user to specify for the ratings of the players.
Variants§
Elo
Rating
Rapid
ICCF
USCF
DWZ
ECF
Unknown(u8)
Only seven values are given meanings in the SCID source code, but the format allows for a total of 16 types; if an unknown value is encountered this variant will be used.
Trait Implementations§
Source§impl Clone for RatingType
impl Clone for RatingType
Source§fn clone(&self) -> RatingType
fn clone(&self) -> RatingType
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 RatingType
impl Debug for RatingType
Source§impl PartialEq for RatingType
impl PartialEq for RatingType
impl Copy for RatingType
impl Eq for RatingType
impl StructuralPartialEq for RatingType
Auto Trait Implementations§
impl Freeze for RatingType
impl RefUnwindSafe for RatingType
impl Send for RatingType
impl Sync for RatingType
impl Unpin for RatingType
impl UnwindSafe for RatingType
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