#[non_exhaustive]pub struct UpdateSolNetworkPackageInput {
pub nsd_info_id: Option<String>,
pub nsd_operational_state: Option<NsdOperationalState>,
}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.nsd_info_id: Option<String>ID of the network service descriptor in the network package.
nsd_operational_state: Option<NsdOperationalState>Operational state of the network service descriptor in the network package.
Implementations§
source§impl UpdateSolNetworkPackageInput
impl UpdateSolNetworkPackageInput
sourcepub fn nsd_info_id(&self) -> Option<&str>
pub fn nsd_info_id(&self) -> Option<&str>
ID of the network service descriptor in the network package.
sourcepub fn nsd_operational_state(&self) -> Option<&NsdOperationalState>
pub fn nsd_operational_state(&self) -> Option<&NsdOperationalState>
Operational state of the network service descriptor in the network package.
source§impl UpdateSolNetworkPackageInput
impl UpdateSolNetworkPackageInput
sourcepub fn builder() -> UpdateSolNetworkPackageInputBuilder
pub fn builder() -> UpdateSolNetworkPackageInputBuilder
Creates a new builder-style object to manufacture UpdateSolNetworkPackageInput.
Trait Implementations§
source§impl Clone for UpdateSolNetworkPackageInput
impl Clone for UpdateSolNetworkPackageInput
source§fn clone(&self) -> UpdateSolNetworkPackageInput
fn clone(&self) -> UpdateSolNetworkPackageInput
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 UpdateSolNetworkPackageInput
impl Debug for UpdateSolNetworkPackageInput
source§impl PartialEq for UpdateSolNetworkPackageInput
impl PartialEq for UpdateSolNetworkPackageInput
source§fn eq(&self, other: &UpdateSolNetworkPackageInput) -> bool
fn eq(&self, other: &UpdateSolNetworkPackageInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateSolNetworkPackageInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateSolNetworkPackageInput
impl Send for UpdateSolNetworkPackageInput
impl Sync for UpdateSolNetworkPackageInput
impl Unpin for UpdateSolNetworkPackageInput
impl UnwindSafe for UpdateSolNetworkPackageInput
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.