pub struct Continue {
pub span: Range<usize>,
}Expand description
A continue expression, used to skip the rest of a loop iteration.
Fields§
§span: Range<usize>The region of the source code that this expression was parsed from.
Implementations§
Trait Implementations§
Source§impl Latex for Continue
impl Latex for Continue
Source§fn as_display(&self) -> LatexFormatter<'_, Self>
fn as_display(&self) -> LatexFormatter<'_, Self>
Wraps the value in a
LatexFormatter, which implements Display.Source§impl<'source> Parse<'source> for Continue
impl<'source> Parse<'source> for Continue
impl Eq for Continue
impl StructuralPartialEq for Continue
Auto Trait Implementations§
impl Freeze for Continue
impl RefUnwindSafe for Continue
impl Send for Continue
impl Sync for Continue
impl Unpin for Continue
impl UnwindSafe for Continue
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