pub enum TestingVerdict {
Ok,
PartialSolution,
Pending,
Compiling,
CompilationError,
Testing,
Fail,
}Variants§
Trait Implementations§
Source§impl Clone for TestingVerdict
impl Clone for TestingVerdict
Source§fn clone(&self) -> TestingVerdict
fn clone(&self) -> TestingVerdict
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TestingVerdict
impl Debug for TestingVerdict
Source§impl<'de> Deserialize<'de> for TestingVerdict
impl<'de> Deserialize<'de> for TestingVerdict
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 Display for TestingVerdict
impl Display for TestingVerdict
impl Eq for TestingVerdict
Source§impl Error for TestingVerdict
impl Error for TestingVerdict
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for TestingVerdict
impl PartialEq for TestingVerdict
Source§impl Serialize for TestingVerdict
impl Serialize for TestingVerdict
impl StructuralPartialEq for TestingVerdict
Auto Trait Implementations§
impl Freeze for TestingVerdict
impl RefUnwindSafe for TestingVerdict
impl Send for TestingVerdict
impl Sync for TestingVerdict
impl Unpin for TestingVerdict
impl UnsafeUnpin for TestingVerdict
impl UnwindSafe for TestingVerdict
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