pub enum CaseRelation {
Serial,
Concurrent,
}
Expand description
A case relation describes the temporal relationship between two test cases.
Variants§
Serial
With serial relation, test cases will be run in sequence using the same codec server. For serial relation, outputs from test cases will be returned.
Concurrent
With concurrent relation, test cases will run concurrently using two or more codec servers. For concurrent relation, outputs from test cases will not be returned.
Auto Trait Implementations§
impl Freeze for CaseRelation
impl RefUnwindSafe for CaseRelation
impl Send for CaseRelation
impl Sync for CaseRelation
impl Unpin for CaseRelation
impl UnwindSafe for CaseRelation
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