pub struct OcspResponse {
pub cert_id_hex: String,
pub status: OcspStatus,
pub this_update: DateTime<Utc>,
pub next_update: DateTime<Utc>,
pub responder_id: String,
}Expand description
An OCSP response.
Fields§
§cert_id_hex: String§status: OcspStatus§this_update: DateTime<Utc>§next_update: DateTime<Utc>§responder_id: StringTrait Implementations§
Source§impl Clone for OcspResponse
impl Clone for OcspResponse
Source§fn clone(&self) -> OcspResponse
fn clone(&self) -> OcspResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OcspResponse
impl Debug for OcspResponse
Source§impl<'de> Deserialize<'de> for OcspResponse
impl<'de> Deserialize<'de> for OcspResponse
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 OcspResponse
impl RefUnwindSafe for OcspResponse
impl Send for OcspResponse
impl Sync for OcspResponse
impl Unpin for OcspResponse
impl UnsafeUnpin for OcspResponse
impl UnwindSafe for OcspResponse
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