pub enum MacroBody {
Steps(Vec<MacroStep>),
Expect(Vec<ExpectItem>),
}Expand description
A macro is either a sequence of request steps or an assert-only expect:
(merged into the previous request entry — the Then-step rule, ADR-0004).
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MacroBody
impl RefUnwindSafe for MacroBody
impl Send for MacroBody
impl Sync for MacroBody
impl Unpin for MacroBody
impl UnsafeUnpin for MacroBody
impl UnwindSafe for MacroBody
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