pub struct NwClass {
pub name: String,
pub ctors: Vec<NwFunction>,
pub dtors: Vec<NwFunction>,
pub consts: Vec<NwConstant>,
pub functions: Vec<NwFunction>,
}
Fields§
§name: String
§ctors: Vec<NwFunction>
§dtors: Vec<NwFunction>
§consts: Vec<NwConstant>
§functions: Vec<NwFunction>
Implementations§
Auto Trait Implementations§
impl Freeze for NwClass
impl RefUnwindSafe for NwClass
impl Send for NwClass
impl Sync for NwClass
impl Unpin for NwClass
impl UnwindSafe for NwClass
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