pub struct TsTypeAliasDeclarationFields {
pub type_token: SyntaxResult<JsSyntaxToken>,
pub binding_identifier: SyntaxResult<TsIdentifierBinding>,
pub type_parameters: Option<TsTypeParameters>,
pub eq_token: SyntaxResult<JsSyntaxToken>,
pub ty: SyntaxResult<AnyTsType>,
pub semicolon_token: Option<JsSyntaxToken>,
}Fields§
§type_token: SyntaxResult<JsSyntaxToken>§binding_identifier: SyntaxResult<TsIdentifierBinding>§type_parameters: Option<TsTypeParameters>§eq_token: SyntaxResult<JsSyntaxToken>§ty: SyntaxResult<AnyTsType>§semicolon_token: Option<JsSyntaxToken>Auto Trait Implementations§
impl RefUnwindSafe for TsTypeAliasDeclarationFields
impl !Send for TsTypeAliasDeclarationFields
impl !Sync for TsTypeAliasDeclarationFields
impl Unpin for TsTypeAliasDeclarationFields
impl UnwindSafe for TsTypeAliasDeclarationFields
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