Struct aws_sdk_ec2::types::PacketHeaderStatementRequest
source · #[non_exhaustive]pub struct PacketHeaderStatementRequest {
pub source_addresses: Option<Vec<String>>,
pub destination_addresses: Option<Vec<String>>,
pub source_ports: Option<Vec<String>>,
pub destination_ports: Option<Vec<String>>,
pub source_prefix_lists: Option<Vec<String>>,
pub destination_prefix_lists: Option<Vec<String>>,
pub protocols: Option<Vec<Protocol>>,
}
Expand description
Describes a packet header statement.
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.source_addresses: Option<Vec<String>>
The source addresses.
destination_addresses: Option<Vec<String>>
The destination addresses.
source_ports: Option<Vec<String>>
The source ports.
destination_ports: Option<Vec<String>>
The destination ports.
source_prefix_lists: Option<Vec<String>>
The source prefix lists.
destination_prefix_lists: Option<Vec<String>>
The destination prefix lists.
protocols: Option<Vec<Protocol>>
The protocols.
Implementations§
source§impl PacketHeaderStatementRequest
impl PacketHeaderStatementRequest
sourcepub fn source_addresses(&self) -> &[String]
pub fn source_addresses(&self) -> &[String]
The source addresses.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .source_addresses.is_none()
.
sourcepub fn destination_addresses(&self) -> &[String]
pub fn destination_addresses(&self) -> &[String]
The destination addresses.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .destination_addresses.is_none()
.
sourcepub fn source_ports(&self) -> &[String]
pub fn source_ports(&self) -> &[String]
The source ports.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .source_ports.is_none()
.
sourcepub fn destination_ports(&self) -> &[String]
pub fn destination_ports(&self) -> &[String]
The destination ports.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .destination_ports.is_none()
.
sourcepub fn source_prefix_lists(&self) -> &[String]
pub fn source_prefix_lists(&self) -> &[String]
The source prefix lists.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .source_prefix_lists.is_none()
.
sourcepub fn destination_prefix_lists(&self) -> &[String]
pub fn destination_prefix_lists(&self) -> &[String]
The destination prefix lists.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .destination_prefix_lists.is_none()
.
source§impl PacketHeaderStatementRequest
impl PacketHeaderStatementRequest
sourcepub fn builder() -> PacketHeaderStatementRequestBuilder
pub fn builder() -> PacketHeaderStatementRequestBuilder
Creates a new builder-style object to manufacture PacketHeaderStatementRequest
.
Trait Implementations§
source§impl Clone for PacketHeaderStatementRequest
impl Clone for PacketHeaderStatementRequest
source§fn clone(&self) -> PacketHeaderStatementRequest
fn clone(&self) -> PacketHeaderStatementRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PacketHeaderStatementRequest
impl Debug for PacketHeaderStatementRequest
source§impl PartialEq for PacketHeaderStatementRequest
impl PartialEq for PacketHeaderStatementRequest
source§fn eq(&self, other: &PacketHeaderStatementRequest) -> bool
fn eq(&self, other: &PacketHeaderStatementRequest) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PacketHeaderStatementRequest
Auto Trait Implementations§
impl Freeze for PacketHeaderStatementRequest
impl RefUnwindSafe for PacketHeaderStatementRequest
impl Send for PacketHeaderStatementRequest
impl Sync for PacketHeaderStatementRequest
impl Unpin for PacketHeaderStatementRequest
impl UnwindSafe for PacketHeaderStatementRequest
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
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>
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 more