Struct aws_sdk_tnb::operation::get_sol_network_package_content::GetSolNetworkPackageContentOutput
source · #[non_exhaustive]pub struct GetSolNetworkPackageContentOutput {
pub content_type: Option<PackageContentType>,
pub nsd_content: Option<Blob>,
/* private fields */
}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.content_type: Option<PackageContentType>Indicates the media type of the resource.
nsd_content: Option<Blob>Content of the network service descriptor in the network package.
Implementations§
source§impl GetSolNetworkPackageContentOutput
impl GetSolNetworkPackageContentOutput
sourcepub fn content_type(&self) -> Option<&PackageContentType>
pub fn content_type(&self) -> Option<&PackageContentType>
Indicates the media type of the resource.
sourcepub fn nsd_content(&self) -> Option<&Blob>
pub fn nsd_content(&self) -> Option<&Blob>
Content of the network service descriptor in the network package.
source§impl GetSolNetworkPackageContentOutput
impl GetSolNetworkPackageContentOutput
sourcepub fn builder() -> GetSolNetworkPackageContentOutputBuilder
pub fn builder() -> GetSolNetworkPackageContentOutputBuilder
Creates a new builder-style object to manufacture GetSolNetworkPackageContentOutput.
Trait Implementations§
source§impl Clone for GetSolNetworkPackageContentOutput
impl Clone for GetSolNetworkPackageContentOutput
source§fn clone(&self) -> GetSolNetworkPackageContentOutput
fn clone(&self) -> GetSolNetworkPackageContentOutput
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 GetSolNetworkPackageContentOutput
impl PartialEq for GetSolNetworkPackageContentOutput
source§fn eq(&self, other: &GetSolNetworkPackageContentOutput) -> bool
fn eq(&self, other: &GetSolNetworkPackageContentOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetSolNetworkPackageContentOutput
impl RequestId for GetSolNetworkPackageContentOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetSolNetworkPackageContentOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetSolNetworkPackageContentOutput
impl Send for GetSolNetworkPackageContentOutput
impl Sync for GetSolNetworkPackageContentOutput
impl Unpin for GetSolNetworkPackageContentOutput
impl UnwindSafe for GetSolNetworkPackageContentOutput
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