pub(crate) enum AnonymousClientPolicy {
Allow,
Deny,
}
Expand description
Controls how the WebPkiClientVerifier handles anonymous clients.
Variants§
Allow
Clients that do not present a client certificate are allowed.
Deny
Clients that do not present a client certificate are denied.
Trait Implementations§
Source§impl Clone for AnonymousClientPolicy
impl Clone for AnonymousClientPolicy
Source§fn clone(&self) -> AnonymousClientPolicy
fn clone(&self) -> AnonymousClientPolicy
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AnonymousClientPolicy
impl Debug for AnonymousClientPolicy
Source§impl PartialEq for AnonymousClientPolicy
impl PartialEq for AnonymousClientPolicy
impl Copy for AnonymousClientPolicy
impl Eq for AnonymousClientPolicy
impl StructuralPartialEq for AnonymousClientPolicy
Auto Trait Implementations§
impl Freeze for AnonymousClientPolicy
impl RefUnwindSafe for AnonymousClientPolicy
impl Send for AnonymousClientPolicy
impl Sync for AnonymousClientPolicy
impl Unpin for AnonymousClientPolicy
impl UnwindSafe for AnonymousClientPolicy
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