#[non_exhaustive]pub struct CrlSet {
pub cache: RwLock<HashMap<String, CachedCrl>>,
pub roots: Arc<RootCertStore>,
pub config: MtlsConfig,
pub discover_tx: UnboundedSender<String>,
/* private fields */
}Expand description
Shared CRL state backing the dynamic mTLS verifier.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.cache: RwLock<HashMap<String, CachedCrl>>Cached CRLs keyed by URL.
roots: Arc<RootCertStore>Immutable client-auth root store.
config: MtlsConfigmTLS CRL configuration.
discover_tx: UnboundedSender<String>Fire-and-forget discovery channel for newly-seen CDP URLs.
Implementations§
Auto Trait Implementations§
impl !Freeze for CrlSet
impl !RefUnwindSafe for CrlSet
impl Send for CrlSet
impl Sync for CrlSet
impl Unpin for CrlSet
impl UnsafeUnpin for CrlSet
impl !UnwindSafe for CrlSet
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