pub struct SbomOverview {
pub start_time: Option<String>,
pub end_time: Option<String>,
pub scan_status: Option<String>,
pub sbom_digest: Option<String>,
pub report_id: Option<String>,
pub duration: Option<i64>,
pub scanner: Option<Box<Scanner>>,
}Expand description
SbomOverview : The generate SBOM overview information
Fields§
§start_time: Option<String>The start time of the generating sbom report task
end_time: Option<String>The end time of the generating sbom report task
scan_status: Option<String>The status of the generating SBOM task
sbom_digest: Option<String>The digest of the generated SBOM accessory
report_id: Option<String>id of the native scan report
duration: Option<i64>Time in seconds required to create the report
scanner: Option<Box<Scanner>>Implementations§
Source§impl SbomOverview
impl SbomOverview
Sourcepub fn new() -> SbomOverview
pub fn new() -> SbomOverview
The generate SBOM overview information
Trait Implementations§
Source§impl Clone for SbomOverview
impl Clone for SbomOverview
Source§fn clone(&self) -> SbomOverview
fn clone(&self) -> SbomOverview
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 SbomOverview
impl Debug for SbomOverview
Source§impl Default for SbomOverview
impl Default for SbomOverview
Source§fn default() -> SbomOverview
fn default() -> SbomOverview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SbomOverview
impl<'de> Deserialize<'de> for SbomOverview
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
Source§impl PartialEq for SbomOverview
impl PartialEq for SbomOverview
Source§fn eq(&self, other: &SbomOverview) -> bool
fn eq(&self, other: &SbomOverview) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SbomOverview
impl Serialize for SbomOverview
impl StructuralPartialEq for SbomOverview
Auto Trait Implementations§
impl Freeze for SbomOverview
impl RefUnwindSafe for SbomOverview
impl Send for SbomOverview
impl Sync for SbomOverview
impl Unpin for SbomOverview
impl UnsafeUnpin for SbomOverview
impl UnwindSafe for SbomOverview
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