Struct csaf_walker::retrieve::RetrievedAdvisory
source · pub struct RetrievedAdvisory {
pub discovered: DiscoveredAdvisory,
pub data: Bytes,
pub signature: Option<String>,
pub sha256: Option<RetrievedDigest<Sha256>>,
pub sha512: Option<RetrievedDigest<Sha512>>,
}Fields§
§discovered: DiscoveredAdvisoryThe discovered advisory
data: BytesThe advisory data
signature: Option<String>Signature data
sha256: Option<RetrievedDigest<Sha256>>SHA-256 digest
sha512: Option<RetrievedDigest<Sha512>>SHA-512 digest
Trait Implementations§
source§impl Clone for RetrievedAdvisory
impl Clone for RetrievedAdvisory
source§fn clone(&self) -> RetrievedAdvisory
fn clone(&self) -> RetrievedAdvisory
Returns a copy 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 RefUnwindSafe for RetrievedAdvisory
impl Send for RetrievedAdvisory
impl Sync for RetrievedAdvisory
impl Unpin for RetrievedAdvisory
impl UnwindSafe for RetrievedAdvisory
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