pub enum OnErrorSpan {
Goto(GotoSpan),
Reset,
ResumeNext,
}
Expand description
Components of an ON ERROR
statement.
Variants§
Goto(GotoSpan)
Components of an ON ERROR GOTO @label
statement.
Reset
Components of an ON ERROR GOTO 0
statement.
ResumeNext
Components of an ON ERROR RESUME NEXT
statement.
Trait Implementations§
Source§impl Debug for OnErrorSpan
impl Debug for OnErrorSpan
Source§impl PartialEq for OnErrorSpan
impl PartialEq for OnErrorSpan
impl Eq for OnErrorSpan
impl StructuralPartialEq for OnErrorSpan
Auto Trait Implementations§
impl Freeze for OnErrorSpan
impl RefUnwindSafe for OnErrorSpan
impl Send for OnErrorSpan
impl Sync for OnErrorSpan
impl Unpin for OnErrorSpan
impl UnwindSafe for OnErrorSpan
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