pub struct DependencyGraphSpdxSbom {
pub sbom: Box<DependencyGraphSpdxSbomSbom>,
}Expand description
DependencyGraphSpdxSbom : A schema for the SPDX JSON format returned by the Dependency Graph.
Fields§
§sbom: Box<DependencyGraphSpdxSbomSbom>Implementations§
Source§impl DependencyGraphSpdxSbom
impl DependencyGraphSpdxSbom
Sourcepub fn new(sbom: DependencyGraphSpdxSbomSbom) -> DependencyGraphSpdxSbom
pub fn new(sbom: DependencyGraphSpdxSbomSbom) -> DependencyGraphSpdxSbom
A schema for the SPDX JSON format returned by the Dependency Graph.
Trait Implementations§
Source§impl Clone for DependencyGraphSpdxSbom
impl Clone for DependencyGraphSpdxSbom
Source§fn clone(&self) -> DependencyGraphSpdxSbom
fn clone(&self) -> DependencyGraphSpdxSbom
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 DependencyGraphSpdxSbom
impl Debug for DependencyGraphSpdxSbom
Source§impl Default for DependencyGraphSpdxSbom
impl Default for DependencyGraphSpdxSbom
Source§fn default() -> DependencyGraphSpdxSbom
fn default() -> DependencyGraphSpdxSbom
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DependencyGraphSpdxSbom
impl<'de> Deserialize<'de> for DependencyGraphSpdxSbom
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 DependencyGraphSpdxSbom
impl PartialEq for DependencyGraphSpdxSbom
Source§impl Serialize for DependencyGraphSpdxSbom
impl Serialize for DependencyGraphSpdxSbom
impl StructuralPartialEq for DependencyGraphSpdxSbom
Auto Trait Implementations§
impl Freeze for DependencyGraphSpdxSbom
impl RefUnwindSafe for DependencyGraphSpdxSbom
impl Send for DependencyGraphSpdxSbom
impl Sync for DependencyGraphSpdxSbom
impl Unpin for DependencyGraphSpdxSbom
impl UnwindSafe for DependencyGraphSpdxSbom
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