Struct aws_sdk_imagebuilder::types::ImagePackage
source · #[non_exhaustive]pub struct ImagePackage {
pub package_name: Option<String>,
pub package_version: Option<String>,
}
Expand description
Represents a package installed on an Image Builder image.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.package_name: Option<String>
The name of the package as reported to the operating system package manager.
package_version: Option<String>
The version of the package as reported to the operating system package manager.
Implementations§
source§impl ImagePackage
impl ImagePackage
sourcepub fn package_name(&self) -> Option<&str>
pub fn package_name(&self) -> Option<&str>
The name of the package as reported to the operating system package manager.
sourcepub fn package_version(&self) -> Option<&str>
pub fn package_version(&self) -> Option<&str>
The version of the package as reported to the operating system package manager.
source§impl ImagePackage
impl ImagePackage
sourcepub fn builder() -> ImagePackageBuilder
pub fn builder() -> ImagePackageBuilder
Creates a new builder-style object to manufacture ImagePackage
.
Trait Implementations§
source§impl Clone for ImagePackage
impl Clone for ImagePackage
source§fn clone(&self) -> ImagePackage
fn clone(&self) -> ImagePackage
Returns a copy 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 ImagePackage
impl Debug for ImagePackage
source§impl PartialEq for ImagePackage
impl PartialEq for ImagePackage
source§fn eq(&self, other: &ImagePackage) -> bool
fn eq(&self, other: &ImagePackage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImagePackage
Auto Trait Implementations§
impl Freeze for ImagePackage
impl RefUnwindSafe for ImagePackage
impl Send for ImagePackage
impl Sync for ImagePackage
impl Unpin for ImagePackage
impl UnwindSafe for ImagePackage
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.