pub struct ApicizeTestBehavior {
pub name: String,
pub tag: Option<String>,
pub success: bool,
pub error: Option<String>,
pub logs: Option<Vec<String>>,
}Expand description
Test execution results
Fields§
§name: StringHuman readable name of the test
tag: Option<String>Tagged reference of the test
success: boolWhether or not the test executed and passed successful
error: Option<String>Error generated during the test
logs: Option<Vec<String>>Console I/O generated during the test
Trait Implementations§
Source§impl Clone for ApicizeTestBehavior
impl Clone for ApicizeTestBehavior
Source§fn clone(&self) -> ApicizeTestBehavior
fn clone(&self) -> ApicizeTestBehavior
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<'de> Deserialize<'de> for ApicizeTestBehavior
impl<'de> Deserialize<'de> for ApicizeTestBehavior
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
Source§impl PartialEq for ApicizeTestBehavior
impl PartialEq for ApicizeTestBehavior
Source§impl Serialize for ApicizeTestBehavior
impl Serialize for ApicizeTestBehavior
impl StructuralPartialEq for ApicizeTestBehavior
Auto Trait Implementations§
impl Freeze for ApicizeTestBehavior
impl RefUnwindSafe for ApicizeTestBehavior
impl Send for ApicizeTestBehavior
impl Sync for ApicizeTestBehavior
impl Unpin for ApicizeTestBehavior
impl UnwindSafe for ApicizeTestBehavior
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