Struct DangerousClientConfigBuilder
pub struct DangerousClientConfigBuilder {
pub cfg: ConfigBuilder<ClientConfig, WantsVerifier>,
}Available on crate feature
tls only.Expand description
Accessor for dangerous configuration options.
Fields§
§cfg: ConfigBuilder<ClientConfig, WantsVerifier>The underlying ClientConfigBuilder
Implementations§
§impl DangerousClientConfigBuilder
impl DangerousClientConfigBuilder
pub fn with_custom_certificate_verifier(
self,
verifier: Arc<dyn ServerCertVerifier>,
) -> ConfigBuilder<ClientConfig, WantsClientCert>
pub fn with_custom_certificate_verifier( self, verifier: Arc<dyn ServerCertVerifier>, ) -> ConfigBuilder<ClientConfig, WantsClientCert>
Set a custom certificate verifier.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DangerousClientConfigBuilder
impl !RefUnwindSafe for DangerousClientConfigBuilder
impl Send for DangerousClientConfigBuilder
impl Sync for DangerousClientConfigBuilder
impl Unpin for DangerousClientConfigBuilder
impl !UnwindSafe for DangerousClientConfigBuilder
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more