pub struct GraphFileFacts {
pub file_path: String,
pub imports: Vec<ImportRelation>,
pub definitions: Vec<Symbol>,
pub calls: Vec<CallRelation>,
}Fields§
§file_path: String§imports: Vec<ImportRelation>§definitions: Vec<Symbol>§calls: Vec<CallRelation>Trait Implementations§
Source§impl Clone for GraphFileFacts
impl Clone for GraphFileFacts
Source§fn clone(&self) -> GraphFileFacts
fn clone(&self) -> GraphFileFacts
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 GraphFileFacts
impl RefUnwindSafe for GraphFileFacts
impl Send for GraphFileFacts
impl Sync for GraphFileFacts
impl Unpin for GraphFileFacts
impl UnsafeUnpin for GraphFileFacts
impl UnwindSafe for GraphFileFacts
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