pub enum BlockKind {
Alt,
Opt,
Loop,
Par,
Seq,
Parallel,
Serial,
}Expand description
Block kind
Variants§
Alt
Alternative (if/else)
Opt
Optional
Loop
Loop
Par
Parallel
Seq
Sequential (inside par)
Parallel
Parallel with braces syntax
Serial
Serial with braces syntax
Implementations§
Trait Implementations§
impl Copy for BlockKind
impl Eq for BlockKind
impl StructuralPartialEq for BlockKind
Auto Trait Implementations§
impl Freeze for BlockKind
impl RefUnwindSafe for BlockKind
impl Send for BlockKind
impl Sync for BlockKind
impl Unpin for BlockKind
impl UnwindSafe for BlockKind
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