pub struct GraphifyImport {
pub facts: FactSet,
pub report: ImportReport,
}Expand description
The result of importing a Graphify graph: the facts to apply and a report.
Fields§
§facts: FactSetNodes and inferred edges to apply to the store.
report: ImportReportA summary of what was imported vs. dropped.
Trait Implementations§
Source§impl Clone for GraphifyImport
impl Clone for GraphifyImport
Source§fn clone(&self) -> GraphifyImport
fn clone(&self) -> GraphifyImport
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 GraphifyImport
impl RefUnwindSafe for GraphifyImport
impl Send for GraphifyImport
impl Sync for GraphifyImport
impl Unpin for GraphifyImport
impl UnsafeUnpin for GraphifyImport
impl UnwindSafe for GraphifyImport
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