pub struct StmtBreak {
pub break_token: Break,
pub semi_token: Semi,
}
Expand description
A break statement: break;
.
Solidity Reference: https://docs.soliditylang.org/en/latest/grammar.html#a4.SolidityParser.breakStatement
Fields§
§break_token: Break
§semi_token: Semi
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StmtBreak
impl RefUnwindSafe for StmtBreak
impl !Send for StmtBreak
impl !Sync for StmtBreak
impl Unpin for StmtBreak
impl UnwindSafe for StmtBreak
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