pub struct TestExecution {
pub id: Uuid,
pub fixture: String,
pub platform: Platform,
pub started_at: DateTime<Utc>,
pub ended_at: Option<DateTime<Utc>>,
pub container_id: Option<String>,
}Expand description
A single test execution instance
Fields§
§id: UuidUnique execution ID
fixture: StringFixture name being tested
platform: PlatformTarget platform
started_at: DateTime<Utc>Execution start time
ended_at: Option<DateTime<Utc>>Execution end time
container_id: Option<String>Docker container ID (if using container)
Implementations§
Source§impl TestExecution
impl TestExecution
Trait Implementations§
Source§impl Clone for TestExecution
impl Clone for TestExecution
Source§fn clone(&self) -> TestExecution
fn clone(&self) -> TestExecution
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 moreAuto Trait Implementations§
impl Freeze for TestExecution
impl RefUnwindSafe for TestExecution
impl Send for TestExecution
impl Sync for TestExecution
impl Unpin for TestExecution
impl UnwindSafe for TestExecution
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