pub struct AppliedFix {
pub package: String,
pub from_version: String,
pub to_version: String,
pub vulnerability_id: String,
}Expand description
A successfully applied fix
Fields§
§package: StringPackage name
from_version: StringPrevious version
to_version: StringNew version
vulnerability_id: StringVulnerability ID that was fixed
Trait Implementations§
Source§impl Clone for AppliedFix
impl Clone for AppliedFix
Source§fn clone(&self) -> AppliedFix
fn clone(&self) -> AppliedFix
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 AppliedFix
impl RefUnwindSafe for AppliedFix
impl Send for AppliedFix
impl Sync for AppliedFix
impl Unpin for AppliedFix
impl UnwindSafe for AppliedFix
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