pub struct ClientTrustStoreConfig {
pub ca_paths: Vec<PathBuf>,
pub ca_dir: Option<PathBuf>,
pub crls: Vec<CrlSourceConfig>,
}Expand description
Per-rule trust store config for verifying client certs. At least
one of ca_paths / ca_dir must be present (enforced at compile).
Fields§
§ca_paths: Vec<PathBuf>§ca_dir: Option<PathBuf>§crls: Vec<CrlSourceConfig>Trait Implementations§
Source§impl Clone for ClientTrustStoreConfig
impl Clone for ClientTrustStoreConfig
Source§fn clone(&self) -> ClientTrustStoreConfig
fn clone(&self) -> ClientTrustStoreConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClientTrustStoreConfig
impl Debug for ClientTrustStoreConfig
Source§impl<'de> Deserialize<'de> for ClientTrustStoreConfig
impl<'de> Deserialize<'de> for ClientTrustStoreConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ClientTrustStoreConfig
impl PartialEq for ClientTrustStoreConfig
Source§fn eq(&self, other: &ClientTrustStoreConfig) -> bool
fn eq(&self, other: &ClientTrustStoreConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClientTrustStoreConfig
impl Serialize for ClientTrustStoreConfig
impl Eq for ClientTrustStoreConfig
impl StructuralPartialEq for ClientTrustStoreConfig
Auto Trait Implementations§
impl Freeze for ClientTrustStoreConfig
impl RefUnwindSafe for ClientTrustStoreConfig
impl Send for ClientTrustStoreConfig
impl Sync for ClientTrustStoreConfig
impl Unpin for ClientTrustStoreConfig
impl UnsafeUnpin for ClientTrustStoreConfig
impl UnwindSafe for ClientTrustStoreConfig
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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