pub enum CFParticipantType {
Contestant,
Practice,
Virtual,
Manager,
OutOfCompetition,
}
Expand description
Participant type returned by Codeforces API (eg. Contestant, Virtual).
Variants§
Trait Implementations§
Source§impl Clone for CFParticipantType
impl Clone for CFParticipantType
Source§fn clone(&self) -> CFParticipantType
fn clone(&self) -> CFParticipantType
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 CFParticipantType
impl Debug for CFParticipantType
Source§impl<'de> Deserialize<'de> for CFParticipantType
impl<'de> Deserialize<'de> for CFParticipantType
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 CFParticipantType
impl PartialEq for CFParticipantType
Source§impl Serialize for CFParticipantType
impl Serialize for CFParticipantType
impl Copy for CFParticipantType
impl Eq for CFParticipantType
impl StructuralPartialEq for CFParticipantType
Auto Trait Implementations§
impl Freeze for CFParticipantType
impl RefUnwindSafe for CFParticipantType
impl Send for CFParticipantType
impl Sync for CFParticipantType
impl Unpin for CFParticipantType
impl UnwindSafe for CFParticipantType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.