pub struct Advisory {
pub id: String,
pub package: String,
pub title: String,
pub informational: Option<String>,
pub cvss_score: Option<f32>,
pub patched: Vec<String>,
pub unaffected: Vec<String>,
}Fields§
§id: String§package: String§title: String§informational: Option<String>§cvss_score: Option<f32>§patched: Vec<String>§unaffected: Vec<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Advisory
impl RefUnwindSafe for Advisory
impl Send for Advisory
impl Sync for Advisory
impl Unpin for Advisory
impl UnsafeUnpin for Advisory
impl UnwindSafe for Advisory
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