pub struct GcClass {
pub name: String,
pub constructor: Option<GcRef>,
pub methods: HashMap<String, GcRef>,
}Fields§
§name: String§constructor: Option<GcRef>§methods: HashMap<String, GcRef>Trait Implementations§
impl Eq for GcClass
impl StructuralPartialEq for GcClass
Auto Trait Implementations§
impl Freeze for GcClass
impl RefUnwindSafe for GcClass
impl Send for GcClass
impl Sync for GcClass
impl Unpin for GcClass
impl UnsafeUnpin for GcClass
impl UnwindSafe for GcClass
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