pub struct HarnessExpectation {
pub status: Option<HarnessExpectedStatus>,
pub receipt: Option<ReceiptExpectation>,
pub steps: Vec<String>,
}Fields§
§status: Option<HarnessExpectedStatus>§receipt: Option<ReceiptExpectation>§steps: Vec<String>Trait Implementations§
Source§impl Clone for HarnessExpectation
impl Clone for HarnessExpectation
Source§fn clone(&self) -> HarnessExpectation
fn clone(&self) -> HarnessExpectation
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 HarnessExpectation
impl Debug for HarnessExpectation
Source§impl Default for HarnessExpectation
impl Default for HarnessExpectation
Source§fn default() -> HarnessExpectation
fn default() -> HarnessExpectation
Returns the “default value” for a type. Read more
Source§impl PartialEq for HarnessExpectation
impl PartialEq for HarnessExpectation
Source§fn eq(&self, other: &HarnessExpectation) -> bool
fn eq(&self, other: &HarnessExpectation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HarnessExpectation
Auto Trait Implementations§
impl Freeze for HarnessExpectation
impl RefUnwindSafe for HarnessExpectation
impl Send for HarnessExpectation
impl Sync for HarnessExpectation
impl Unpin for HarnessExpectation
impl UnsafeUnpin for HarnessExpectation
impl UnwindSafe for HarnessExpectation
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