pub struct ClassDecl {
pub name: Option<Ident>,
pub modifiers: ClassModifiers,
pub extends: Option<Name>,
pub implements: Box<[Name]>,
pub body: ClassBody,
pub attributes: Box<[Attribute]>,
pub doc_comment: Option<Comment>,
}Fields§
§name: Option<Ident>§modifiers: ClassModifiers§extends: Option<Name>§implements: Box<[Name]>§body: ClassBody§attributes: Box<[Attribute]>§doc_comment: Option<Comment>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClassDecl
impl RefUnwindSafe for ClassDecl
impl Send for ClassDecl
impl Sync for ClassDecl
impl Unpin for ClassDecl
impl UnsafeUnpin for ClassDecl
impl UnwindSafe for ClassDecl
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