pub struct OcspStatus {
pub status: String,
pub last_update: Option<String>,
pub next_update: Option<String>,
pub certificate_status: Option<String>,
pub revocation_time: Option<String>,
pub revocation_reason: Option<String>,
pub extra: Value,
}
Expand description
OCSP status information
Fields§
§status: String
Overall OCSP status (e.g., “GOOD”, “REVOKED”, “UNKNOWN”)
last_update: Option<String>
Timestamp of last OCSP response update
next_update: Option<String>
Timestamp when the next OCSP update is expected
certificate_status: Option<String>
Certificate status from OCSP response (“GOOD”, “REVOKED”, “UNKNOWN”)
revocation_time: Option<String>
Timestamp when certificate was revoked (if revoked)
revocation_reason: Option<String>
Reason for certificate revocation (if revoked)
extra: Value
Trait Implementations§
Source§impl Clone for OcspStatus
impl Clone for OcspStatus
Source§fn clone(&self) -> OcspStatus
fn clone(&self) -> OcspStatus
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 moreSource§impl Debug for OcspStatus
impl Debug for OcspStatus
Source§impl<'de> Deserialize<'de> for OcspStatus
impl<'de> Deserialize<'de> for OcspStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OcspStatus
impl RefUnwindSafe for OcspStatus
impl Send for OcspStatus
impl Sync for OcspStatus
impl Unpin for OcspStatus
impl UnwindSafe for OcspStatus
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