pub struct DirectoryGraph {
pub files: HashMap<PathBuf, FileInfo>,
pub imports: HashMap<PathBuf, Vec<PathBuf>>,
pub warnings: Vec<String>,
}Fields§
§files: HashMap<PathBuf, FileInfo>§imports: HashMap<PathBuf, Vec<PathBuf>>§warnings: Vec<String>Trait Implementations§
Source§impl Clone for DirectoryGraph
impl Clone for DirectoryGraph
Source§fn clone(&self) -> DirectoryGraph
fn clone(&self) -> DirectoryGraph
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DirectoryGraph
impl RefUnwindSafe for DirectoryGraph
impl Send for DirectoryGraph
impl Sync for DirectoryGraph
impl Unpin for DirectoryGraph
impl UnsafeUnpin for DirectoryGraph
impl UnwindSafe for DirectoryGraph
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