pub struct Class {
pub name: String,
pub parent: Option<String>,
pub desc: Vec<String>,
pub fields: Vec<Field>,
pub see: See,
pub prefix: Prefix,
}
Fields§
§name: String
§parent: Option<String>
§desc: Vec<String>
§fields: Vec<Field>
§see: See
§prefix: Prefix
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Class
impl RefUnwindSafe for Class
impl Send for Class
impl Sync for Class
impl Unpin for Class
impl UnwindSafe for Class
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