pub struct ScaSummary {
pub third_party_components: u32,
pub violate_policy: bool,
pub components_violated_policy: u32,
}Expand description
Software Composition Analysis summary
Fields§
§third_party_components: u32Third party components count
violate_policy: boolWhether violates policy
components_violated_policy: u32Components that violated policy
Trait Implementations§
Source§impl Clone for ScaSummary
impl Clone for ScaSummary
Source§fn clone(&self) -> ScaSummary
fn clone(&self) -> ScaSummary
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 moreSource§impl Debug for ScaSummary
impl Debug for ScaSummary
Source§impl<'de> Deserialize<'de> for ScaSummary
impl<'de> Deserialize<'de> for ScaSummary
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
Auto Trait Implementations§
impl Freeze for ScaSummary
impl RefUnwindSafe for ScaSummary
impl Send for ScaSummary
impl Sync for ScaSummary
impl Unpin for ScaSummary
impl UnwindSafe for ScaSummary
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