pub struct Ast {
pub imports: Vec<String>,
pub injects: Vec<AstCode>,
pub replacements: Vec<AstReplace>,
pub externs: Vec<AstExtern>,
pub structs: Vec<AstStruct>,
pub enums: Vec<AstEnum>,
pub implementations: Vec<AstImplementation>,
}Fields§
§imports: Vec<String>§injects: Vec<AstCode>§replacements: Vec<AstReplace>§externs: Vec<AstExtern>§structs: Vec<AstStruct>§enums: Vec<AstEnum>§implementations: Vec<AstImplementation>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Ast
impl RefUnwindSafe for Ast
impl Send for Ast
impl Sync for Ast
impl Unpin for Ast
impl UnsafeUnpin for Ast
impl UnwindSafe for Ast
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