pub struct OcspStatus {
pub cert_name: String,
pub ocsp_status: String,
pub produced_at: Option<String>,
pub responder_url: Option<String>,
pub this_update: Option<String>,
pub next_update: Option<String>,
}
Expand description
OCSP status information
Fields§
§cert_name: String
§ocsp_status: String
§produced_at: Option<String>
§responder_url: Option<String>
§this_update: Option<String>
§next_update: Option<String>
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