#[non_exhaustive]pub struct CoreNetworkChangeValues {
pub segment_name: Option<String>,
pub edge_locations: Option<Vec<String>>,
pub asn: Option<i64>,
pub cidr: Option<String>,
pub destination_identifier: Option<String>,
pub inside_cidr_blocks: Option<Vec<String>>,
pub shared_segments: Option<Vec<String>>,
}
Expand description
Describes a core network change.
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.segment_name: Option<String>
The names of the segments in a core network.
edge_locations: Option<Vec<String>>
The Regions where edges are located in a core network.
asn: Option<i64>
The ASN of a core network.
cidr: Option<String>
The IP addresses used for a core network.
destination_identifier: Option<String>
The ID of the destination.
inside_cidr_blocks: Option<Vec<String>>
The inside IP addresses used for core network change values.
The shared segments for a core network change value.
Implementations
sourceimpl CoreNetworkChangeValues
impl CoreNetworkChangeValues
sourcepub fn segment_name(&self) -> Option<&str>
pub fn segment_name(&self) -> Option<&str>
The names of the segments in a core network.
sourcepub fn edge_locations(&self) -> Option<&[String]>
pub fn edge_locations(&self) -> Option<&[String]>
The Regions where edges are located in a core network.
sourcepub fn destination_identifier(&self) -> Option<&str>
pub fn destination_identifier(&self) -> Option<&str>
The ID of the destination.
sourcepub fn inside_cidr_blocks(&self) -> Option<&[String]>
pub fn inside_cidr_blocks(&self) -> Option<&[String]>
The inside IP addresses used for core network change values.
The shared segments for a core network change value.
sourceimpl CoreNetworkChangeValues
impl CoreNetworkChangeValues
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CoreNetworkChangeValues
Trait Implementations
sourceimpl Clone for CoreNetworkChangeValues
impl Clone for CoreNetworkChangeValues
sourcefn clone(&self) -> CoreNetworkChangeValues
fn clone(&self) -> CoreNetworkChangeValues
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 Debug for CoreNetworkChangeValues
impl Debug for CoreNetworkChangeValues
sourceimpl PartialEq<CoreNetworkChangeValues> for CoreNetworkChangeValues
impl PartialEq<CoreNetworkChangeValues> for CoreNetworkChangeValues
sourcefn eq(&self, other: &CoreNetworkChangeValues) -> bool
fn eq(&self, other: &CoreNetworkChangeValues) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CoreNetworkChangeValues) -> bool
fn ne(&self, other: &CoreNetworkChangeValues) -> bool
This method tests for !=
.
impl StructuralPartialEq for CoreNetworkChangeValues
Auto Trait Implementations
impl RefUnwindSafe for CoreNetworkChangeValues
impl Send for CoreNetworkChangeValues
impl Sync for CoreNetworkChangeValues
impl Unpin for CoreNetworkChangeValues
impl UnwindSafe for CoreNetworkChangeValues
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