pub enum Statement {
Assignment(Assignment),
Pc(Pc),
BlockPc(BlockPc),
}
Expand description
A statement in a LHS or RHS.
Variants§
Assignment(Assignment)
An assignment statement.
Pc(Pc)
A path condition statement.
BlockPc(BlockPc)
A block path condition statement.
Trait Implementations§
Source§impl From<Assignment> for Statement
impl From<Assignment> for Statement
Source§fn from(a: Assignment) -> Self
fn from(a: Assignment) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Statement
impl RefUnwindSafe for Statement
impl Send for Statement
impl Sync for Statement
impl Unpin for Statement
impl UnwindSafe for Statement
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)