pub enum GraderTypeEnum {
JUDGE,
PREBUILT,
REMOTE,
CUSTOM,
Other(String),
}Variants§
Trait Implementations§
Source§impl Clone for GraderTypeEnum
impl Clone for GraderTypeEnum
Source§fn clone(&self) -> GraderTypeEnum
fn clone(&self) -> GraderTypeEnum
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 GraderTypeEnum
impl Debug for GraderTypeEnum
Source§impl<'de> Deserialize<'de> for GraderTypeEnum
impl<'de> Deserialize<'de> for GraderTypeEnum
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GraderTypeEnum
impl RefUnwindSafe for GraderTypeEnum
impl Send for GraderTypeEnum
impl Sync for GraderTypeEnum
impl Unpin for GraderTypeEnum
impl UnwindSafe for GraderTypeEnum
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