pub struct JsDoWhileStatementFields {
pub do_token: SyntaxResult<JsSyntaxToken>,
pub body: SyntaxResult<AnyJsStatement>,
pub while_token: SyntaxResult<JsSyntaxToken>,
pub l_paren_token: SyntaxResult<JsSyntaxToken>,
pub test: SyntaxResult<AnyJsExpression>,
pub r_paren_token: SyntaxResult<JsSyntaxToken>,
pub semicolon_token: Option<JsSyntaxToken>,
}Fields§
§do_token: SyntaxResult<JsSyntaxToken>§body: SyntaxResult<AnyJsStatement>§while_token: SyntaxResult<JsSyntaxToken>§l_paren_token: SyntaxResult<JsSyntaxToken>§test: SyntaxResult<AnyJsExpression>§r_paren_token: SyntaxResult<JsSyntaxToken>§semicolon_token: Option<JsSyntaxToken>Auto Trait Implementations§
impl Freeze for JsDoWhileStatementFields
impl RefUnwindSafe for JsDoWhileStatementFields
impl !Send for JsDoWhileStatementFields
impl !Sync for JsDoWhileStatementFields
impl Unpin for JsDoWhileStatementFields
impl UnwindSafe for JsDoWhileStatementFields
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