Struct python_packaging::resource_collection::ResourcesLicenseReport [−][src]
pub struct ResourcesLicenseReport {
pub no_license_packages: BTreeSet<String>,
pub spdx_by_package: BTreeMap<String, BTreeSet<String>>,
pub non_spdx_by_package: BTreeMap<String, BTreeSet<String>>,
}
Expand description
Describes the state of licensing for resources in a given resources collection.
Fields
no_license_packages: BTreeSet<String>
Packages without any licensing info.
spdx_by_package: BTreeMap<String, BTreeSet<String>>
Packages using an SPDX license. Maps license to package names.
non_spdx_by_package: BTreeMap<String, BTreeSet<String>>
Packages using non-SPDX license. Maps license to package names.
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for ResourcesLicenseReport
impl Send for ResourcesLicenseReport
impl Sync for ResourcesLicenseReport
impl Unpin for ResourcesLicenseReport
impl UnwindSafe for ResourcesLicenseReport
Blanket Implementations
Mutably borrows from an owned value. Read more