pub struct Par {
pub stmts: Vec<Control>,
pub attributes: Attributes,
}
Expand description
Data for the par
control statement.
Fields
stmts: Vec<Control>
List of Control
statements to run in parallel.
attributes: Attributes
Attributes attached to this control statement.
Trait Implementations
sourceimpl GetAttributes for Par
impl GetAttributes for Par
sourcefn get_attributes(&self) -> &Attributes
fn get_attributes(&self) -> &Attributes
Returns an
Attributes
instancesourcefn get_mut_attributes(&mut self) -> &mut Attributes
fn get_mut_attributes(&mut self) -> &mut Attributes
Returns a mutable
Attributes
instanceAuto Trait Implementations
impl !RefUnwindSafe for Par
impl !Send for Par
impl !Sync for Par
impl Unpin for Par
impl !UnwindSafe for Par
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more