pub struct ClassDef {
pub name: String,
pub parents: Vec<Vec<String>>,
pub fields: Vec<FieldDef>,
pub constructors: Vec<ConstructorDef>,
pub functions: Vec<FunctionDef>,
pub predicates: Vec<PredicateDef>,
pub classes: Vec<ClassDef>,
}Fields§
§name: String§parents: Vec<Vec<String>>§fields: Vec<FieldDef>§constructors: Vec<ConstructorDef>§functions: Vec<FunctionDef>§predicates: Vec<PredicateDef>§classes: Vec<ClassDef>Auto Trait Implementations§
impl Freeze for ClassDef
impl RefUnwindSafe for ClassDef
impl Send for ClassDef
impl Sync for ClassDef
impl Unpin for ClassDef
impl UnsafeUnpin for ClassDef
impl UnwindSafe for ClassDef
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