Struct biome_js_syntax::TsConditionalTypeFields
source · pub struct TsConditionalTypeFields {
pub check_type: SyntaxResult<AnyTsType>,
pub extends_token: SyntaxResult<JsSyntaxToken>,
pub extends_type: SyntaxResult<AnyTsType>,
pub question_mark_token: SyntaxResult<JsSyntaxToken>,
pub true_type: SyntaxResult<AnyTsType>,
pub colon_token: SyntaxResult<JsSyntaxToken>,
pub false_type: SyntaxResult<AnyTsType>,
}Fields§
§check_type: SyntaxResult<AnyTsType>§extends_token: SyntaxResult<JsSyntaxToken>§extends_type: SyntaxResult<AnyTsType>§question_mark_token: SyntaxResult<JsSyntaxToken>§true_type: SyntaxResult<AnyTsType>§colon_token: SyntaxResult<JsSyntaxToken>§false_type: SyntaxResult<AnyTsType>Auto Trait Implementations§
impl RefUnwindSafe for TsConditionalTypeFields
impl !Send for TsConditionalTypeFields
impl !Sync for TsConditionalTypeFields
impl Unpin for TsConditionalTypeFields
impl UnwindSafe for TsConditionalTypeFields
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