Struct aws_sdk_tnb::operation::get_sol_function_package_content::GetSolFunctionPackageContentInput
source · #[non_exhaustive]pub struct GetSolFunctionPackageContentInput {
pub vnf_pkg_id: Option<String>,
pub accept: Option<PackageContentType>,
}
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.vnf_pkg_id: Option<String>
ID of the function package.
accept: Option<PackageContentType>
The format of the package that you want to download from the function packages.
Implementations§
source§impl GetSolFunctionPackageContentInput
impl GetSolFunctionPackageContentInput
sourcepub fn vnf_pkg_id(&self) -> Option<&str>
pub fn vnf_pkg_id(&self) -> Option<&str>
ID of the function package.
sourcepub fn accept(&self) -> Option<&PackageContentType>
pub fn accept(&self) -> Option<&PackageContentType>
The format of the package that you want to download from the function packages.
source§impl GetSolFunctionPackageContentInput
impl GetSolFunctionPackageContentInput
sourcepub fn builder() -> GetSolFunctionPackageContentInputBuilder
pub fn builder() -> GetSolFunctionPackageContentInputBuilder
Creates a new builder-style object to manufacture GetSolFunctionPackageContentInput
.
Trait Implementations§
source§impl Clone for GetSolFunctionPackageContentInput
impl Clone for GetSolFunctionPackageContentInput
source§fn clone(&self) -> GetSolFunctionPackageContentInput
fn clone(&self) -> GetSolFunctionPackageContentInput
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 PartialEq for GetSolFunctionPackageContentInput
impl PartialEq for GetSolFunctionPackageContentInput
source§fn eq(&self, other: &GetSolFunctionPackageContentInput) -> bool
fn eq(&self, other: &GetSolFunctionPackageContentInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetSolFunctionPackageContentInput
Auto Trait Implementations§
impl Freeze for GetSolFunctionPackageContentInput
impl RefUnwindSafe for GetSolFunctionPackageContentInput
impl Send for GetSolFunctionPackageContentInput
impl Sync for GetSolFunctionPackageContentInput
impl Unpin for GetSolFunctionPackageContentInput
impl UnwindSafe for GetSolFunctionPackageContentInput
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>
Creates a shared type from an unshared type.