pub struct ContinueStatement {
pub loc: Loc,
}Expand description
v1.14.0 — continue keyword inside a for-in body. Same
shape as BreakStatement; the runner uses a different
sentinel type to distinguish loop-exit from iteration-skip.
Fields§
§loc: LocTrait Implementations§
Auto Trait Implementations§
impl Freeze for ContinueStatement
impl RefUnwindSafe for ContinueStatement
impl Send for ContinueStatement
impl Sync for ContinueStatement
impl Unpin for ContinueStatement
impl UnsafeUnpin for ContinueStatement
impl UnwindSafe for ContinueStatement
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