pub struct ExprLoop {
pub attrs: Vec<Attribute>,
pub label: Option<Label>,
pub loop_token: Loop,
pub body: Block,
}Expand description
Conditionless loop: loop { ... }.
Fields§
§attrs: Vec<Attribute>§label: Option<Label>§loop_token: Loop§body: BlockTrait Implementations§
Auto Trait Implementations§
impl Freeze for ExprLoop
impl RefUnwindSafe for ExprLoop
impl !Send for ExprLoop
impl !Sync for ExprLoop
impl Unpin for ExprLoop
impl UnwindSafe for ExprLoop
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