pub enum PingEventHookConfigInsecureSsl {
_0,
_1,
}
Expand description
Determines whether the SSL certificate of the host for url
will be verified when delivering payloads. Supported values include 0
(verification is performed) and 1
(verification is not performed). The default is 0
.
JSON schema
{
"description": "Determines whether the SSL certificate of the host for `url` will be verified when delivering payloads. Supported values include `0` (verification is performed) and `1` (verification is not performed). The default is `0`.",
"type": "string",
"enum": [
"0",
"1"
]
}
Variants§
Trait Implementations§
Source§impl Clone for PingEventHookConfigInsecureSsl
impl Clone for PingEventHookConfigInsecureSsl
Source§fn clone(&self) -> PingEventHookConfigInsecureSsl
fn clone(&self) -> PingEventHookConfigInsecureSsl
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<'de> Deserialize<'de> for PingEventHookConfigInsecureSsl
impl<'de> Deserialize<'de> for PingEventHookConfigInsecureSsl
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
Source§impl From<&PingEventHookConfigInsecureSsl> for PingEventHookConfigInsecureSsl
impl From<&PingEventHookConfigInsecureSsl> for PingEventHookConfigInsecureSsl
Source§fn from(value: &PingEventHookConfigInsecureSsl) -> Self
fn from(value: &PingEventHookConfigInsecureSsl) -> Self
Converts to this type from the input type.
Source§impl Ord for PingEventHookConfigInsecureSsl
impl Ord for PingEventHookConfigInsecureSsl
Source§fn cmp(&self, other: &PingEventHookConfigInsecureSsl) -> Ordering
fn cmp(&self, other: &PingEventHookConfigInsecureSsl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PingEventHookConfigInsecureSsl
impl PartialEq for PingEventHookConfigInsecureSsl
Source§fn eq(&self, other: &PingEventHookConfigInsecureSsl) -> bool
fn eq(&self, other: &PingEventHookConfigInsecureSsl) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for PingEventHookConfigInsecureSsl
impl PartialOrd for PingEventHookConfigInsecureSsl
Source§impl TryFrom<&String> for PingEventHookConfigInsecureSsl
impl TryFrom<&String> for PingEventHookConfigInsecureSsl
Source§impl TryFrom<&str> for PingEventHookConfigInsecureSsl
impl TryFrom<&str> for PingEventHookConfigInsecureSsl
impl Copy for PingEventHookConfigInsecureSsl
impl Eq for PingEventHookConfigInsecureSsl
impl StructuralPartialEq for PingEventHookConfigInsecureSsl
Auto Trait Implementations§
impl Freeze for PingEventHookConfigInsecureSsl
impl RefUnwindSafe for PingEventHookConfigInsecureSsl
impl Send for PingEventHookConfigInsecureSsl
impl Sync for PingEventHookConfigInsecureSsl
impl Unpin for PingEventHookConfigInsecureSsl
impl UnwindSafe for PingEventHookConfigInsecureSsl
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