pub enum ClassDecl {
Reflected(ReflectedClassInfo),
Specified(ClassInfo),
}Variants§
Reflected(ReflectedClassInfo)
User wrote class Foo { * }
Specified(ClassInfo)
User wrote class Foo { ... } with full details.
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 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