pub struct CppAst {
pub functions: Vec<Function>,
pub global_variables: Vec<Variable>,
pub classes: Vec<Class>,
}Fields§
§functions: Vec<Function>§global_variables: Vec<Variable>§classes: Vec<Class>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CppAst
impl RefUnwindSafe for CppAst
impl Send for CppAst
impl Sync for CppAst
impl Unpin for CppAst
impl UnwindSafe for CppAst
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