pub struct TimelineConfig {
pub sbom_paths: Vec<PathBuf>,
pub output: OutputConfig,
pub matching: MatchingConfig,
pub filtering: FilterConfig,
pub behavior: BehaviorConfig,
pub graph_diff: GraphAwareDiffConfig,
pub rules: MatchingRulesPathConfig,
pub ecosystem_rules: EcosystemRulesConfig,
pub enrichment: EnrichmentConfig,
}Expand description
Configuration for timeline analysis
Fields§
§sbom_paths: Vec<PathBuf>Paths to SBOMs in chronological order
output: OutputConfigOutput configuration
matching: MatchingConfigMatching configuration
filtering: FilterConfigFiltering options
behavior: BehaviorConfigBehavior flags
graph_diff: GraphAwareDiffConfigGraph-aware diffing configuration
rules: MatchingRulesPathConfigCustom matching rules configuration
ecosystem_rules: EcosystemRulesConfigEcosystem-specific rules configuration
enrichment: EnrichmentConfigEnrichment configuration
Trait Implementations§
Source§impl Clone for TimelineConfig
impl Clone for TimelineConfig
Source§fn clone(&self) -> TimelineConfig
fn clone(&self) -> TimelineConfig
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 TimelineConfig
impl Debug for TimelineConfig
Source§impl Validatable for TimelineConfig
impl Validatable for TimelineConfig
Auto Trait Implementations§
impl Freeze for TimelineConfig
impl RefUnwindSafe for TimelineConfig
impl Send for TimelineConfig
impl Sync for TimelineConfig
impl Unpin for TimelineConfig
impl UnsafeUnpin for TimelineConfig
impl UnwindSafe for TimelineConfig
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