#[non_exhaustive]pub struct DescribeCustomerMetadataOutput {
pub agreements: Option<Vec<CustomerAgreement>>,
pub nni_partner_type: Option<NniPartnerType>,
}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.agreements: Option<Vec<CustomerAgreement>>The list of customer agreements.
nni_partner_type: Option<NniPartnerType>The type of network-to-network interface (NNI) partner. The partner type will be one of the following:
-
V1: This partner can only allocate 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, or 500Mbps subgigabit connections.
-
V2: This partner can only allocate 1GB, 2GB, 5GB, or 10GB hosted connections.
-
nonPartner: The customer is not a partner.
Implementations
sourceimpl DescribeCustomerMetadataOutput
impl DescribeCustomerMetadataOutput
sourcepub fn agreements(&self) -> Option<&[CustomerAgreement]>
pub fn agreements(&self) -> Option<&[CustomerAgreement]>
The list of customer agreements.
sourcepub fn nni_partner_type(&self) -> Option<&NniPartnerType>
pub fn nni_partner_type(&self) -> Option<&NniPartnerType>
The type of network-to-network interface (NNI) partner. The partner type will be one of the following:
-
V1: This partner can only allocate 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, or 500Mbps subgigabit connections.
-
V2: This partner can only allocate 1GB, 2GB, 5GB, or 10GB hosted connections.
-
nonPartner: The customer is not a partner.
sourceimpl DescribeCustomerMetadataOutput
impl DescribeCustomerMetadataOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeCustomerMetadataOutput.
Trait Implementations
sourceimpl Clone for DescribeCustomerMetadataOutput
impl Clone for DescribeCustomerMetadataOutput
sourcefn clone(&self) -> DescribeCustomerMetadataOutput
fn clone(&self) -> DescribeCustomerMetadataOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl PartialEq<DescribeCustomerMetadataOutput> for DescribeCustomerMetadataOutput
impl PartialEq<DescribeCustomerMetadataOutput> for DescribeCustomerMetadataOutput
sourcefn eq(&self, other: &DescribeCustomerMetadataOutput) -> bool
fn eq(&self, other: &DescribeCustomerMetadataOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeCustomerMetadataOutput) -> bool
fn ne(&self, other: &DescribeCustomerMetadataOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeCustomerMetadataOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeCustomerMetadataOutput
impl Send for DescribeCustomerMetadataOutput
impl Sync for DescribeCustomerMetadataOutput
impl Unpin for DescribeCustomerMetadataOutput
impl UnwindSafe for DescribeCustomerMetadataOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more