pub struct RevocationOptions<'a> {
pub(crate) crls: &'a [&'a CertRevocationList<'a>],
pub(crate) depth: RevocationCheckDepth,
pub(crate) status_policy: UnknownStatusPolicy,
pub(crate) expiration_policy: ExpirationPolicy,
}
Expand description
Describes how revocation checking is performed, if at all. Can be constructed with a RevocationOptionsBuilder instance.
Fields§
§crls: &'a [&'a CertRevocationList<'a>]
§depth: RevocationCheckDepth
§status_policy: UnknownStatusPolicy
§expiration_policy: ExpirationPolicy
Implementations§
Source§impl RevocationOptions<'_>
impl RevocationOptions<'_>
Trait Implementations§
Source§impl<'a> Clone for RevocationOptions<'a>
impl<'a> Clone for RevocationOptions<'a>
Source§fn clone(&self) -> RevocationOptions<'a>
fn clone(&self) -> RevocationOptions<'a>
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<'a> Debug for RevocationOptions<'a>
impl<'a> Debug for RevocationOptions<'a>
impl<'a> Copy for RevocationOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for RevocationOptions<'a>
impl<'a> RefUnwindSafe for RevocationOptions<'a>
impl<'a> Send for RevocationOptions<'a>
impl<'a> Sync for RevocationOptions<'a>
impl<'a> Unpin for RevocationOptions<'a>
impl<'a> UnwindSafe for RevocationOptions<'a>
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