pub struct TestSnapshot {
pub command: String,
pub passed: u32,
pub failed: u32,
pub total: u32,
pub timestamp: DateTime<Utc>,
}Fields§
§command: String§passed: u32§failed: u32§total: u32§timestamp: DateTime<Utc>Trait Implementations§
Source§impl Clone for TestSnapshot
impl Clone for TestSnapshot
Source§fn clone(&self) -> TestSnapshot
fn clone(&self) -> TestSnapshot
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 TestSnapshot
impl Debug for TestSnapshot
Source§impl<'de> Deserialize<'de> for TestSnapshot
impl<'de> Deserialize<'de> for TestSnapshot
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
Auto Trait Implementations§
impl Freeze for TestSnapshot
impl RefUnwindSafe for TestSnapshot
impl Send for TestSnapshot
impl Sync for TestSnapshot
impl Unpin for TestSnapshot
impl UnsafeUnpin for TestSnapshot
impl UnwindSafe for TestSnapshot
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