pub enum TestCaseStatus {
Passed,
Failed,
Skipped,
}Variants§
Trait Implementations§
Source§impl Clone for TestCaseStatus
impl Clone for TestCaseStatus
Source§fn clone(&self) -> TestCaseStatus
fn clone(&self) -> TestCaseStatus
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 moreimpl Copy for TestCaseStatus
Source§impl Debug for TestCaseStatus
impl Debug for TestCaseStatus
Source§impl<'de> Deserialize<'de> for TestCaseStatus
impl<'de> Deserialize<'de> for TestCaseStatus
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
impl Eq for TestCaseStatus
Source§impl PartialEq for TestCaseStatus
impl PartialEq for TestCaseStatus
Source§impl Serialize for TestCaseStatus
impl Serialize for TestCaseStatus
impl StructuralPartialEq for TestCaseStatus
Auto Trait Implementations§
impl Freeze for TestCaseStatus
impl RefUnwindSafe for TestCaseStatus
impl Send for TestCaseStatus
impl Sync for TestCaseStatus
impl Unpin for TestCaseStatus
impl UnsafeUnpin for TestCaseStatus
impl UnwindSafe for TestCaseStatus
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