#[non_exhaustive]pub struct VirtualGatewayTlsValidationContextBuilder { /* private fields */ }
Expand description
A builder for VirtualGatewayTlsValidationContext
.
Implementations§
source§impl VirtualGatewayTlsValidationContextBuilder
impl VirtualGatewayTlsValidationContextBuilder
sourcepub fn trust(self, input: VirtualGatewayTlsValidationContextTrust) -> Self
pub fn trust(self, input: VirtualGatewayTlsValidationContextTrust) -> Self
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
This field is required.sourcepub fn set_trust(
self,
input: Option<VirtualGatewayTlsValidationContextTrust>
) -> Self
pub fn set_trust( self, input: Option<VirtualGatewayTlsValidationContextTrust> ) -> Self
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
sourcepub fn get_trust(&self) -> &Option<VirtualGatewayTlsValidationContextTrust>
pub fn get_trust(&self) -> &Option<VirtualGatewayTlsValidationContextTrust>
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
sourcepub fn subject_alternative_names(self, input: SubjectAlternativeNames) -> Self
pub fn subject_alternative_names(self, input: SubjectAlternativeNames) -> Self
A reference to an object that represents the SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context.
sourcepub fn set_subject_alternative_names(
self,
input: Option<SubjectAlternativeNames>
) -> Self
pub fn set_subject_alternative_names( self, input: Option<SubjectAlternativeNames> ) -> Self
A reference to an object that represents the SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context.
sourcepub fn get_subject_alternative_names(&self) -> &Option<SubjectAlternativeNames>
pub fn get_subject_alternative_names(&self) -> &Option<SubjectAlternativeNames>
A reference to an object that represents the SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context.
sourcepub fn build(self) -> VirtualGatewayTlsValidationContext
pub fn build(self) -> VirtualGatewayTlsValidationContext
Consumes the builder and constructs a VirtualGatewayTlsValidationContext
.
Trait Implementations§
source§impl Clone for VirtualGatewayTlsValidationContextBuilder
impl Clone for VirtualGatewayTlsValidationContextBuilder
source§fn clone(&self) -> VirtualGatewayTlsValidationContextBuilder
fn clone(&self) -> VirtualGatewayTlsValidationContextBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for VirtualGatewayTlsValidationContextBuilder
impl Default for VirtualGatewayTlsValidationContextBuilder
source§fn default() -> VirtualGatewayTlsValidationContextBuilder
fn default() -> VirtualGatewayTlsValidationContextBuilder
source§impl PartialEq for VirtualGatewayTlsValidationContextBuilder
impl PartialEq for VirtualGatewayTlsValidationContextBuilder
source§fn eq(&self, other: &VirtualGatewayTlsValidationContextBuilder) -> bool
fn eq(&self, other: &VirtualGatewayTlsValidationContextBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VirtualGatewayTlsValidationContextBuilder
Auto Trait Implementations§
impl Freeze for VirtualGatewayTlsValidationContextBuilder
impl RefUnwindSafe for VirtualGatewayTlsValidationContextBuilder
impl Send for VirtualGatewayTlsValidationContextBuilder
impl Sync for VirtualGatewayTlsValidationContextBuilder
impl Unpin for VirtualGatewayTlsValidationContextBuilder
impl UnwindSafe for VirtualGatewayTlsValidationContextBuilder
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