pub struct ImportGraphBuilder { /* private fields */ }Expand description
Builder for constructing import graphs from scan results
Implementations§
Source§impl ImportGraphBuilder
impl ImportGraphBuilder
Sourcepub fn new() -> Result<ImportGraphBuilder, ScribeError>
pub fn new() -> Result<ImportGraphBuilder, ScribeError>
Create a new import graph builder
Sourcepub fn build_graph<T>(
&mut self,
files: &[T],
) -> Result<ImportGraph, ScribeError>where
T: ScanResult,
pub fn build_graph<T>(
&mut self,
files: &[T],
) -> Result<ImportGraph, ScribeError>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
Source§impl Default for ImportGraphBuilder
impl Default for ImportGraphBuilder
Source§fn default() -> ImportGraphBuilder
fn default() -> ImportGraphBuilder
Returns the “default value” for a type. Read more
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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