pub struct BuilderConfig {
pub skip_data_nodes: bool,
pub max_containment_depth: Option<usize>,
pub max_files: Option<usize>,
pub exclude_patterns: Vec<String>,
}Expand description
Configuration for the graph builder.
Fields§
§skip_data_nodes: boolSkip Data nodes (parameters, locals, fields) for smaller graphs
max_containment_depth: Option<usize>Maximum containment depth (None = unlimited)
max_files: Option<usize>Maximum number of files to process (None = unlimited)
exclude_patterns: Vec<String>File patterns to exclude (glob patterns)
Trait Implementations§
Source§impl Clone for BuilderConfig
impl Clone for BuilderConfig
Source§fn clone(&self) -> BuilderConfig
fn clone(&self) -> BuilderConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BuilderConfig
impl Debug for BuilderConfig
Auto Trait Implementations§
impl Freeze for BuilderConfig
impl RefUnwindSafe for BuilderConfig
impl Send for BuilderConfig
impl Sync for BuilderConfig
impl Unpin for BuilderConfig
impl UnwindSafe for BuilderConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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