pub struct TestRunResult {
pub language: String,
pub status: RunStatus,
pub commands: Vec<CommandRecord>,
pub failures: Vec<Failure>,
pub duration_ms: u128,
pub quality: VerificationQuality,
}Fields§
§language: String§status: RunStatus§commands: Vec<CommandRecord>§failures: Vec<Failure>§duration_ms: u128§quality: VerificationQualityTrait Implementations§
Source§impl Clone for TestRunResult
impl Clone for TestRunResult
Source§fn clone(&self) -> TestRunResult
fn clone(&self) -> TestRunResult
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 TestRunResult
impl Debug for TestRunResult
Source§impl<'de> Deserialize<'de> for TestRunResult
impl<'de> Deserialize<'de> for TestRunResult
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 TestRunResult
impl PartialEq for TestRunResult
Source§fn eq(&self, other: &TestRunResult) -> bool
fn eq(&self, other: &TestRunResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TestRunResult
impl Serialize for TestRunResult
impl Eq for TestRunResult
impl StructuralPartialEq for TestRunResult
Auto Trait Implementations§
impl Freeze for TestRunResult
impl RefUnwindSafe for TestRunResult
impl Send for TestRunResult
impl Sync for TestRunResult
impl Unpin for TestRunResult
impl UnsafeUnpin for TestRunResult
impl UnwindSafe for TestRunResult
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