pub struct Technology {
pub name: String,
pub version: Option<String>,
pub category: TechCategory,
pub confidence: u8,
}Expand description
A detected technology fingerprint.
Fields§
§name: StringCanonical technology name.
version: Option<String>Detected version string when the scanner can infer one.
category: TechCategoryHigh-level technology category.
confidence: u80–100 confidence score.
Trait Implementations§
Source§impl Clone for Technology
impl Clone for Technology
Source§fn clone(&self) -> Technology
fn clone(&self) -> Technology
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Technology
impl Debug for Technology
Source§impl<'de> Deserialize<'de> for Technology
impl<'de> Deserialize<'de> for Technology
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Technology
impl RefUnwindSafe for Technology
impl Send for Technology
impl Sync for Technology
impl Unpin for Technology
impl UnsafeUnpin for Technology
impl UnwindSafe for Technology
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