pub struct CrlView {
pub authority_fingerprints: BTreeMap<String, String>,
pub crls: Vec<Crl>,
}Expand description
A concrete view over a set of CRLs.
Fields§
Fingerprints of the authorities whose status is being asked.
crls: Vec<Crl>The CRLs held (cached for offline verification).
Trait Implementations§
Source§impl RevocationView for CrlView
impl RevocationView for CrlView
Auto Trait Implementations§
impl Freeze for CrlView
impl RefUnwindSafe for CrlView
impl Send for CrlView
impl Sync for CrlView
impl Unpin for CrlView
impl UnsafeUnpin for CrlView
impl UnwindSafe for CrlView
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