#[non_exhaustive]pub struct StartRouteAnalysisInput {
pub global_network_id: Option<String>,
pub source: Option<RouteAnalysisEndpointOptionsSpecification>,
pub destination: Option<RouteAnalysisEndpointOptionsSpecification>,
pub include_return_path: Option<bool>,
pub use_middleboxes: Option<bool>,
}
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.global_network_id: Option<String>
The ID of the global network.
source: Option<RouteAnalysisEndpointOptionsSpecification>
The source from which traffic originates.
destination: Option<RouteAnalysisEndpointOptionsSpecification>
The destination.
include_return_path: Option<bool>
Indicates whether to analyze the return path. The default is false
.
use_middleboxes: Option<bool>
Indicates whether to include the location of middlebox appliances in the route analysis. The default is false
.
Implementations§
source§impl StartRouteAnalysisInput
impl StartRouteAnalysisInput
sourcepub fn global_network_id(&self) -> Option<&str>
pub fn global_network_id(&self) -> Option<&str>
The ID of the global network.
sourcepub fn source(&self) -> Option<&RouteAnalysisEndpointOptionsSpecification>
pub fn source(&self) -> Option<&RouteAnalysisEndpointOptionsSpecification>
The source from which traffic originates.
sourcepub fn destination(&self) -> Option<&RouteAnalysisEndpointOptionsSpecification>
pub fn destination(&self) -> Option<&RouteAnalysisEndpointOptionsSpecification>
The destination.
sourcepub fn include_return_path(&self) -> Option<bool>
pub fn include_return_path(&self) -> Option<bool>
Indicates whether to analyze the return path. The default is false
.
sourcepub fn use_middleboxes(&self) -> Option<bool>
pub fn use_middleboxes(&self) -> Option<bool>
Indicates whether to include the location of middlebox appliances in the route analysis. The default is false
.
source§impl StartRouteAnalysisInput
impl StartRouteAnalysisInput
sourcepub fn builder() -> StartRouteAnalysisInputBuilder
pub fn builder() -> StartRouteAnalysisInputBuilder
Creates a new builder-style object to manufacture StartRouteAnalysisInput
.
Trait Implementations§
source§impl Clone for StartRouteAnalysisInput
impl Clone for StartRouteAnalysisInput
source§fn clone(&self) -> StartRouteAnalysisInput
fn clone(&self) -> StartRouteAnalysisInput
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 StartRouteAnalysisInput
impl Debug for StartRouteAnalysisInput
source§impl PartialEq for StartRouteAnalysisInput
impl PartialEq for StartRouteAnalysisInput
source§fn eq(&self, other: &StartRouteAnalysisInput) -> bool
fn eq(&self, other: &StartRouteAnalysisInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartRouteAnalysisInput
Auto Trait Implementations§
impl RefUnwindSafe for StartRouteAnalysisInput
impl Send for StartRouteAnalysisInput
impl Sync for StartRouteAnalysisInput
impl Unpin for StartRouteAnalysisInput
impl UnwindSafe for StartRouteAnalysisInput
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