Struct aws_sdk_securityhub::model::SoftwarePackage
source · [−]#[non_exhaustive]pub struct SoftwarePackage {
pub name: Option<String>,
pub version: Option<String>,
pub epoch: Option<String>,
pub release: Option<String>,
pub architecture: Option<String>,
pub package_manager: Option<String>,
pub file_path: Option<String>,
}
Expand description
Information about a software package.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the software package.
version: Option<String>
The version of the software package.
epoch: Option<String>
The epoch of the software package.
release: Option<String>
The release of the software package.
architecture: Option<String>
The architecture used for the software package.
package_manager: Option<String>
The source of the package.
file_path: Option<String>
The file system path to the package manager inventory file.
Implementations
The architecture used for the software package.
The source of the package.
Creates a new builder-style object to manufacture SoftwarePackage
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SoftwarePackage
impl Send for SoftwarePackage
impl Sync for SoftwarePackage
impl Unpin for SoftwarePackage
impl UnwindSafe for SoftwarePackage
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more