pub struct WaitStatement {
pub sensitivity_clause: Vec<WithPos<Name>>,
pub condition_clause: Option<WithPos<Expression>>,
pub timeout_clause: Option<WithPos<Expression>>,
}Expand description
LRM 10.2 Wait statement
Fields§
§sensitivity_clause: Vec<WithPos<Name>>§condition_clause: Option<WithPos<Expression>>§timeout_clause: Option<WithPos<Expression>>Trait Implementations§
Source§impl Clone for WaitStatement
impl Clone for WaitStatement
Source§fn clone(&self) -> WaitStatement
fn clone(&self) -> WaitStatement
Returns a duplicate of the value. Read more
1.0.0 · 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 WaitStatement
impl Debug for WaitStatement
Source§impl PartialEq for WaitStatement
impl PartialEq for WaitStatement
impl StructuralPartialEq for WaitStatement
Auto Trait Implementations§
impl Freeze for WaitStatement
impl !RefUnwindSafe for WaitStatement
impl Send for WaitStatement
impl Sync for WaitStatement
impl Unpin for WaitStatement
impl !UnwindSafe for WaitStatement
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