pub struct CertPool { /* private fields */ }Expand description
An unordered collection of certificates used as input to path building.
Certificates are stored by DER bytes and decoded on demand. Add all candidate intermediate certificates here; the path builder will select and order the subset that forms a valid path to a trust anchor.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CertPool
impl RefUnwindSafe for CertPool
impl Send for CertPool
impl Sync for CertPool
impl Unpin for CertPool
impl UnsafeUnpin for CertPool
impl UnwindSafe for CertPool
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