pub struct TsInterfaceDeclarationFields {
pub interface_token: SyntaxResult<JsSyntaxToken>,
pub id: SyntaxResult<TsIdentifierBinding>,
pub type_parameters: Option<TsTypeParameters>,
pub extends_clause: Option<TsExtendsClause>,
pub l_curly_token: SyntaxResult<JsSyntaxToken>,
pub members: TsTypeMemberList,
pub r_curly_token: SyntaxResult<JsSyntaxToken>,
}Fields§
§interface_token: SyntaxResult<JsSyntaxToken>§id: SyntaxResult<TsIdentifierBinding>§type_parameters: Option<TsTypeParameters>§extends_clause: Option<TsExtendsClause>§l_curly_token: SyntaxResult<JsSyntaxToken>§members: TsTypeMemberList§r_curly_token: SyntaxResult<JsSyntaxToken>Auto Trait Implementations§
impl RefUnwindSafe for TsInterfaceDeclarationFields
impl !Send for TsInterfaceDeclarationFields
impl !Sync for TsInterfaceDeclarationFields
impl Unpin for TsInterfaceDeclarationFields
impl UnwindSafe for TsInterfaceDeclarationFields
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