pub struct TargetResultEntry {
pub name: String,
pub expected: String,
pub actual: String,
pub passed: bool,
pub comparison: String,
}Expand description
Individual target result entry.
Fields§
§name: StringTarget name.
expected: StringExpected value/threshold.
actual: StringActual value.
passed: boolWhether the target passed.
comparison: StringComparison operator used.
Trait Implementations§
Source§impl Clone for TargetResultEntry
impl Clone for TargetResultEntry
Source§fn clone(&self) -> TargetResultEntry
fn clone(&self) -> TargetResultEntry
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 TargetResultEntry
impl Debug for TargetResultEntry
Source§impl<'de> Deserialize<'de> for TargetResultEntry
impl<'de> Deserialize<'de> for TargetResultEntry
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
Auto Trait Implementations§
impl Freeze for TargetResultEntry
impl RefUnwindSafe for TargetResultEntry
impl Send for TargetResultEntry
impl Sync for TargetResultEntry
impl Unpin for TargetResultEntry
impl UnsafeUnpin for TargetResultEntry
impl UnwindSafe for TargetResultEntry
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