pub struct TechnologyRule {
pub name: String,
pub category: TechnologyCategory,
pub confidence: f32,
pub dependency_patterns: Vec<String>,
pub requires: Vec<String>,
pub conflicts_with: Vec<String>,
pub is_primary_indicator: bool,
pub alternative_names: Vec<String>,
pub file_indicators: Vec<String>,
}Expand description
Technology detection rules with proper classification and relationships
Fields§
§name: String§category: TechnologyCategory§confidence: f32§dependency_patterns: Vec<String>§requires: Vec<String>Dependencies this technology requires (e.g., Next.js requires React)
conflicts_with: Vec<String>Technologies that conflict with this one (mutually exclusive)
is_primary_indicator: boolWhether this technology typically drives the architecture
alternative_names: Vec<String>Alternative names for this technology
file_indicators: Vec<String>File indicators that can help identify this technology
Trait Implementations§
Source§impl Clone for TechnologyRule
impl Clone for TechnologyRule
Source§fn clone(&self) -> TechnologyRule
fn clone(&self) -> TechnologyRule
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 moreAuto Trait Implementations§
impl Freeze for TechnologyRule
impl RefUnwindSafe for TechnologyRule
impl Send for TechnologyRule
impl Sync for TechnologyRule
impl Unpin for TechnologyRule
impl UnwindSafe for TechnologyRule
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