pub enum TestClause {
Given(GivenClause),
Stub(StubClause),
Run(RunClause),
Expect(ExpectClause),
}Variants§
Trait Implementations§
Source§impl Clone for TestClause
impl Clone for TestClause
Source§fn clone(&self) -> TestClause
fn clone(&self) -> TestClause
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TestClause
impl Debug for TestClause
impl Eq for TestClause
Source§impl PartialEq for TestClause
impl PartialEq for TestClause
impl StructuralPartialEq for TestClause
Auto Trait Implementations§
impl Freeze for TestClause
impl RefUnwindSafe for TestClause
impl Send for TestClause
impl Sync for TestClause
impl Unpin for TestClause
impl UnsafeUnpin for TestClause
impl UnwindSafe for TestClause
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