pub struct NetworkInsightsPath {Show 14 fields
pub network_insights_path_id: String,
pub network_insights_path_arn: String,
pub created_date: String,
pub source: Option<String>,
pub destination: Option<String>,
pub source_arn: Option<String>,
pub destination_arn: Option<String>,
pub source_ip: Option<String>,
pub destination_ip: Option<String>,
pub protocol: String,
pub destination_port: Option<i32>,
pub tags: Tags,
pub filter_at_source: NetworkInsightsPathFilter,
pub filter_at_destination: NetworkInsightsPathFilter,
}Fields§
§network_insights_path_id: String§network_insights_path_arn: String§created_date: String§source: Option<String>§destination: Option<String>§source_arn: Option<String>§destination_arn: Option<String>§source_ip: Option<String>§destination_ip: Option<String>§protocol: String§destination_port: Option<i32>§filter_at_source: NetworkInsightsPathFilter§filter_at_destination: NetworkInsightsPathFilterTrait Implementations§
Source§impl Clone for NetworkInsightsPath
impl Clone for NetworkInsightsPath
Source§fn clone(&self) -> NetworkInsightsPath
fn clone(&self) -> NetworkInsightsPath
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NetworkInsightsPath
impl Debug for NetworkInsightsPath
Source§impl From<&NetworkInsightsPath> for NetworkInsightsPathView
impl From<&NetworkInsightsPath> for NetworkInsightsPathView
Source§fn from(s: &NetworkInsightsPath) -> Self
fn from(s: &NetworkInsightsPath) -> Self
Converts to this type from the input type.
Source§impl From<NetworkInsightsPathView> for NetworkInsightsPath
impl From<NetworkInsightsPathView> for NetworkInsightsPath
Source§fn from(v: NetworkInsightsPathView) -> Self
fn from(v: NetworkInsightsPathView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NetworkInsightsPath
impl RefUnwindSafe for NetworkInsightsPath
impl Send for NetworkInsightsPath
impl Sync for NetworkInsightsPath
impl Unpin for NetworkInsightsPath
impl UnsafeUnpin for NetworkInsightsPath
impl UnwindSafe for NetworkInsightsPath
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.