pub struct DoBlock {
pub kind: DoKind,
pub body: Vec<Clause>,
pub name: Option<String>,
}Expand description
DO block variants.
Fields§
§kind: DoKind§body: Vec<Clause>§name: Option<String>Optional label name for LEAVE/ITERATE targeting.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DoBlock
impl RefUnwindSafe for DoBlock
impl Send for DoBlock
impl Sync for DoBlock
impl Unpin for DoBlock
impl UnsafeUnpin for DoBlock
impl UnwindSafe for DoBlock
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