pub struct SingleRespStatus {
pub cert_status: OcspCertStatus,
pub reason: Option<OcspRevokeReason>,
pub this_update: Option<String>,
pub next_update: Option<String>,
pub revocation_time: Option<String>,
}Expand description
Status of a single certificate entry, returned by
BorrowedOcspSingleResp::status.
Fields§
§cert_status: OcspCertStatusPer-certificate revocation status.
reason: Option<OcspRevokeReason>Revocation reason, set only when cert_status == Revoked and the
responder included a reason code.
this_update: Option<String>thisUpdate time as a human-readable UTC string, if present.
next_update: Option<String>nextUpdate time as a human-readable UTC string, if present.
revocation_time: Option<String>Revocation time as a human-readable UTC string; Some only when
cert_status == Revoked and the time was provided.
Trait Implementations§
Source§impl Clone for SingleRespStatus
impl Clone for SingleRespStatus
Source§fn clone(&self) -> SingleRespStatus
fn clone(&self) -> SingleRespStatus
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for SingleRespStatus
impl RefUnwindSafe for SingleRespStatus
impl Send for SingleRespStatus
impl Sync for SingleRespStatus
impl Unpin for SingleRespStatus
impl UnsafeUnpin for SingleRespStatus
impl UnwindSafe for SingleRespStatus
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