pub struct ParsedResult {
pub base_path: PathBuf,
pub bare_fns: Vec<SavvyFn>,
pub impls: Vec<SavvyImpl>,
pub structs: Vec<SavvyStruct>,
pub enums: Vec<SavvyEnum>,
pub mod_path: Vec<String>,
pub child_mods: Vec<String>,
pub tests: Vec<ParsedTestCase>,
}Fields§
§base_path: PathBuf§bare_fns: Vec<SavvyFn>§impls: Vec<SavvyImpl>§structs: Vec<SavvyStruct>§enums: Vec<SavvyEnum>§mod_path: Vec<String>§child_mods: Vec<String>§tests: Vec<ParsedTestCase>Auto Trait Implementations§
impl Freeze for ParsedResult
impl RefUnwindSafe for ParsedResult
impl !Send for ParsedResult
impl !Sync for ParsedResult
impl Unpin for ParsedResult
impl UnwindSafe for ParsedResult
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