#[non_exhaustive]pub struct InstanceAttachmentEnaSrdUdpSpecification {
pub ena_srd_udp_enabled: Option<bool>,
}
Expand description
ENA Express is compatible with both TCP and UDP transport protocols. When it's enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs.
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.ena_srd_udp_enabled: Option<bool>
Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.
Implementations§
source§impl InstanceAttachmentEnaSrdUdpSpecification
impl InstanceAttachmentEnaSrdUdpSpecification
sourcepub fn ena_srd_udp_enabled(&self) -> Option<bool>
pub fn ena_srd_udp_enabled(&self) -> Option<bool>
Indicates whether UDP traffic to and from the instance uses ENA Express. To specify this setting, you must first enable ENA Express.
source§impl InstanceAttachmentEnaSrdUdpSpecification
impl InstanceAttachmentEnaSrdUdpSpecification
sourcepub fn builder() -> InstanceAttachmentEnaSrdUdpSpecificationBuilder
pub fn builder() -> InstanceAttachmentEnaSrdUdpSpecificationBuilder
Creates a new builder-style object to manufacture InstanceAttachmentEnaSrdUdpSpecification
.
Trait Implementations§
source§impl Clone for InstanceAttachmentEnaSrdUdpSpecification
impl Clone for InstanceAttachmentEnaSrdUdpSpecification
source§fn clone(&self) -> InstanceAttachmentEnaSrdUdpSpecification
fn clone(&self) -> InstanceAttachmentEnaSrdUdpSpecification
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for InstanceAttachmentEnaSrdUdpSpecification
impl PartialEq for InstanceAttachmentEnaSrdUdpSpecification
source§fn eq(&self, other: &InstanceAttachmentEnaSrdUdpSpecification) -> bool
fn eq(&self, other: &InstanceAttachmentEnaSrdUdpSpecification) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InstanceAttachmentEnaSrdUdpSpecification
Auto Trait Implementations§
impl Freeze for InstanceAttachmentEnaSrdUdpSpecification
impl RefUnwindSafe for InstanceAttachmentEnaSrdUdpSpecification
impl Send for InstanceAttachmentEnaSrdUdpSpecification
impl Sync for InstanceAttachmentEnaSrdUdpSpecification
impl Unpin for InstanceAttachmentEnaSrdUdpSpecification
impl UnwindSafe for InstanceAttachmentEnaSrdUdpSpecification
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> 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