pub enum StmtResult {
Normal,
Break,
Continue,
Return(Value),
}Expand description
Result of executing a statement
Variants§
Auto Trait Implementations§
impl Freeze for StmtResult
impl RefUnwindSafe for StmtResult
impl Send for StmtResult
impl Sync for StmtResult
impl Unpin for StmtResult
impl UnwindSafe for StmtResult
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