#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for Listener
Implementations
sourceimpl Builder
impl Builder
sourcepub fn port_mapping(self, input: PortMapping) -> Self
pub fn port_mapping(self, input: PortMapping) -> Self
The port mapping information for the listener.
sourcepub fn set_port_mapping(self, input: Option<PortMapping>) -> Self
pub fn set_port_mapping(self, input: Option<PortMapping>) -> Self
The port mapping information for the listener.
sourcepub fn tls(self, input: ListenerTls) -> Self
pub fn tls(self, input: ListenerTls) -> Self
A reference to an object that represents the Transport Layer Security (TLS) properties for a listener.
sourcepub fn set_tls(self, input: Option<ListenerTls>) -> Self
pub fn set_tls(self, input: Option<ListenerTls>) -> Self
A reference to an object that represents the Transport Layer Security (TLS) properties for a listener.
sourcepub fn health_check(self, input: HealthCheckPolicy) -> Self
pub fn health_check(self, input: HealthCheckPolicy) -> Self
The health check information for the listener.
sourcepub fn set_health_check(self, input: Option<HealthCheckPolicy>) -> Self
pub fn set_health_check(self, input: Option<HealthCheckPolicy>) -> Self
The health check information for the listener.
sourcepub fn timeout(self, input: ListenerTimeout) -> Self
pub fn timeout(self, input: ListenerTimeout) -> Self
An object that represents timeouts for different protocols.
sourcepub fn set_timeout(self, input: Option<ListenerTimeout>) -> Self
pub fn set_timeout(self, input: Option<ListenerTimeout>) -> Self
An object that represents timeouts for different protocols.
sourcepub fn outlier_detection(self, input: OutlierDetection) -> Self
pub fn outlier_detection(self, input: OutlierDetection) -> Self
The outlier detection information for the listener.
sourcepub fn set_outlier_detection(self, input: Option<OutlierDetection>) -> Self
pub fn set_outlier_detection(self, input: Option<OutlierDetection>) -> Self
The outlier detection information for the listener.
sourcepub fn connection_pool(self, input: VirtualNodeConnectionPool) -> Self
pub fn connection_pool(self, input: VirtualNodeConnectionPool) -> Self
The connection pool information for the listener.
sourcepub fn set_connection_pool(
self,
input: Option<VirtualNodeConnectionPool>
) -> Self
pub fn set_connection_pool(
self,
input: Option<VirtualNodeConnectionPool>
) -> Self
The connection pool information for the listener.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
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