Struct biome_js_syntax::JsSwitchStatementFields
source · pub struct JsSwitchStatementFields {
pub switch_token: SyntaxResult<JsSyntaxToken>,
pub l_paren_token: SyntaxResult<JsSyntaxToken>,
pub discriminant: SyntaxResult<AnyJsExpression>,
pub r_paren_token: SyntaxResult<JsSyntaxToken>,
pub l_curly_token: SyntaxResult<JsSyntaxToken>,
pub cases: JsSwitchCaseList,
pub r_curly_token: SyntaxResult<JsSyntaxToken>,
}Fields§
§switch_token: SyntaxResult<JsSyntaxToken>§l_paren_token: SyntaxResult<JsSyntaxToken>§discriminant: SyntaxResult<AnyJsExpression>§r_paren_token: SyntaxResult<JsSyntaxToken>§l_curly_token: SyntaxResult<JsSyntaxToken>§cases: JsSwitchCaseList§r_curly_token: SyntaxResult<JsSyntaxToken>Auto Trait Implementations§
impl RefUnwindSafe for JsSwitchStatementFields
impl !Send for JsSwitchStatementFields
impl !Sync for JsSwitchStatementFields
impl Unpin for JsSwitchStatementFields
impl UnwindSafe for JsSwitchStatementFields
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