pub enum SingleStatement {
Call(Call),
Wait(Wait),
Assert(Assert),
AssertEq(AssertEq),
Command(Command),
Let(Let),
Print(Print),
Set(Set),
Return,
}
Expand description
reserved controls
Variants§
Call(Call)
Wait(Wait)
Assert(Assert)
AssertEq(AssertEq)
Command(Command)
Let(Let)
Print(Print)
Set(Set)
Return
Trait Implementations§
Source§impl Debug for SingleStatement
impl Debug for SingleStatement
Source§impl PartialEq for SingleStatement
impl PartialEq for SingleStatement
impl StructuralPartialEq for SingleStatement
Auto Trait Implementations§
impl Freeze for SingleStatement
impl RefUnwindSafe for SingleStatement
impl Send for SingleStatement
impl Sync for SingleStatement
impl Unpin for SingleStatement
impl UnwindSafe for SingleStatement
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