pub struct CubeCaseRow {
pub row_ix: usize,
pub case_id: String,
pub item_id: String,
pub test_name: String,
pub status: Status,
pub assert_pass: usize,
pub assert_fail: usize,
pub unhandled_action_fail: usize,
}Fields§
§row_ix: usize§case_id: String§item_id: String§test_name: String§status: Status§assert_pass: usize§assert_fail: usize§unhandled_action_fail: usizeTrait Implementations§
Source§impl Clone for CubeCaseRow
impl Clone for CubeCaseRow
Source§fn clone(&self) -> CubeCaseRow
fn clone(&self) -> CubeCaseRow
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 CubeCaseRow
impl Debug for CubeCaseRow
Source§impl PartialEq for CubeCaseRow
impl PartialEq for CubeCaseRow
Source§impl Serialize for CubeCaseRow
impl Serialize for CubeCaseRow
impl StructuralPartialEq for CubeCaseRow
Auto Trait Implementations§
impl Freeze for CubeCaseRow
impl RefUnwindSafe for CubeCaseRow
impl Send for CubeCaseRow
impl Sync for CubeCaseRow
impl Unpin for CubeCaseRow
impl UnsafeUnpin for CubeCaseRow
impl UnwindSafe for CubeCaseRow
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