pub struct OcspConfig {
pub ocsp_url: String,
pub ocsp_response_timeout_seconds: Option<u32>,
pub query_frequency_seconds: Option<u32>,
pub recovery_frequency_seconds: Option<u32>,
pub recovery_max_tries: Option<u32>,
pub responder_cert: Option<String>,
}
Expand description
OCSP (Online Certificate Status Protocol) configuration
Fields§
§ocsp_url: String
§ocsp_response_timeout_seconds: Option<u32>
§query_frequency_seconds: Option<u32>
§recovery_frequency_seconds: Option<u32>
§recovery_max_tries: Option<u32>
§responder_cert: Option<String>
Trait Implementations§
Source§impl Clone for OcspConfig
impl Clone for OcspConfig
Source§fn clone(&self) -> OcspConfig
fn clone(&self) -> OcspConfig
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 OcspConfig
impl Debug for OcspConfig
Source§impl<'de> Deserialize<'de> for OcspConfig
impl<'de> Deserialize<'de> for OcspConfig
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 OcspConfig
impl RefUnwindSafe for OcspConfig
impl Send for OcspConfig
impl Sync for OcspConfig
impl Unpin for OcspConfig
impl UnwindSafe for OcspConfig
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