pub struct ServiceInfo {
pub name: String,
pub version: Option<String>,
pub vendor: Option<String>,
}Expand description
Service information
Fields§
§name: String§version: Option<String>§vendor: Option<String>Implementations§
Source§impl ServiceInfo
impl ServiceInfo
Sourcepub fn has_known_vulnerabilities(&self) -> bool
pub fn has_known_vulnerabilities(&self) -> bool
Check if this is a known vulnerable version
Sourcepub fn vulnerability_severity(&self) -> Option<&'static str>
pub fn vulnerability_severity(&self) -> Option<&'static str>
Get severity if vulnerable
Trait Implementations§
Source§impl Clone for ServiceInfo
impl Clone for ServiceInfo
Source§fn clone(&self) -> ServiceInfo
fn clone(&self) -> ServiceInfo
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 ServiceInfo
impl RefUnwindSafe for ServiceInfo
impl Send for ServiceInfo
impl Sync for ServiceInfo
impl Unpin for ServiceInfo
impl UnwindSafe for ServiceInfo
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