pub struct Repeat<'a> {
pub label: Option<Identifier<'a>>,
pub repeat_span: Span,
pub body: Vec<Statement<'a>>,
pub until_span: Span,
pub condition: Expression<'a>,
pub end_repeat_span: Span,
pub end_label: Option<Identifier<'a>>,
}Expand description
MariaDB/MySQL REPEAT body UNTIL condition END REPEAT construct.
[label:] REPEAT body UNTIL condition END REPEAT [label]
Fields§
§label: Option<Identifier<'a>>§repeat_span: Span§body: Vec<Statement<'a>>§until_span: Span§condition: Expression<'a>§end_repeat_span: Span§end_label: Option<Identifier<'a>>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Repeat<'a>
impl<'a> RefUnwindSafe for Repeat<'a>
impl<'a> Send for Repeat<'a>
impl<'a> Sync for Repeat<'a>
impl<'a> Unpin for Repeat<'a>
impl<'a> UnsafeUnpin for Repeat<'a>
impl<'a> UnwindSafe for Repeat<'a>
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