pub struct AxPostconditionCheckResult {
pub check: String,
pub terminal_status: String,
pub attempts: u32,
pub elapsed_ms: u64,
pub attribute: Option<String>,
pub expected: Value,
pub observed: Option<Value>,
}Fields§
§check: String§terminal_status: String§attempts: u32§elapsed_ms: u64§attribute: Option<String>§expected: Value§observed: Option<Value>Trait Implementations§
Source§impl Clone for AxPostconditionCheckResult
impl Clone for AxPostconditionCheckResult
Source§fn clone(&self) -> AxPostconditionCheckResult
fn clone(&self) -> AxPostconditionCheckResult
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 AxPostconditionCheckResult
impl Debug for AxPostconditionCheckResult
Source§impl Default for AxPostconditionCheckResult
impl Default for AxPostconditionCheckResult
Source§fn default() -> AxPostconditionCheckResult
fn default() -> AxPostconditionCheckResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AxPostconditionCheckResult
impl<'de> Deserialize<'de> for AxPostconditionCheckResult
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
impl StructuralPartialEq for AxPostconditionCheckResult
Auto Trait Implementations§
impl Freeze for AxPostconditionCheckResult
impl RefUnwindSafe for AxPostconditionCheckResult
impl Send for AxPostconditionCheckResult
impl Sync for AxPostconditionCheckResult
impl Unpin for AxPostconditionCheckResult
impl UnsafeUnpin for AxPostconditionCheckResult
impl UnwindSafe for AxPostconditionCheckResult
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