pub struct ImportGraphBuilder { /* private fields */ }
Expand description
Builder for constructing import graphs from scan results
Implementations§
Source§impl ImportGraphBuilder
impl ImportGraphBuilder
Sourcepub fn build_graph<T>(&mut self, files: &[T]) -> Result<ImportGraph>where
T: ScanResult,
pub fn build_graph<T>(&mut self, files: &[T]) -> Result<ImportGraph>where
T: ScanResult,
Build import graph from scan results (OPTIMIZED: O(1) lookups instead of O(F×I))
Trait Implementations§
Source§impl Debug for ImportGraphBuilder
impl Debug for ImportGraphBuilder
Auto Trait Implementations§
impl Freeze for ImportGraphBuilder
impl RefUnwindSafe for ImportGraphBuilder
impl Send for ImportGraphBuilder
impl Sync for ImportGraphBuilder
impl Unpin for ImportGraphBuilder
impl UnwindSafe for ImportGraphBuilder
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more