pub struct VectorResult {
pub id: String,
pub category: String,
pub passed: bool,
pub skipped: bool,
pub expected: String,
pub actual: String,
pub diff: Option<String>,
}Expand description
Result of running a single vector.
Fields§
§id: StringVector ID
category: StringCategory
passed: boolWhether the vector passed
skipped: boolWhether the vector was skipped
expected: StringExpected output
actual: StringActual output
diff: Option<String>Diff message if failed
Trait Implementations§
Source§impl Clone for VectorResult
impl Clone for VectorResult
Source§fn clone(&self) -> VectorResult
fn clone(&self) -> VectorResult
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 moreAuto Trait Implementations§
impl Freeze for VectorResult
impl RefUnwindSafe for VectorResult
impl Send for VectorResult
impl Sync for VectorResult
impl Unpin for VectorResult
impl UnsafeUnpin for VectorResult
impl UnwindSafe for VectorResult
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