pub enum MetaDeletedHookConfigInsecureSsl {
_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 MetaDeletedHookConfigInsecureSsl
impl Clone for MetaDeletedHookConfigInsecureSsl
Source§fn clone(&self) -> MetaDeletedHookConfigInsecureSsl
fn clone(&self) -> MetaDeletedHookConfigInsecureSsl
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 MetaDeletedHookConfigInsecureSsl
impl<'de> Deserialize<'de> for MetaDeletedHookConfigInsecureSsl
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<&MetaDeletedHookConfigInsecureSsl> for MetaDeletedHookConfigInsecureSsl
impl From<&MetaDeletedHookConfigInsecureSsl> for MetaDeletedHookConfigInsecureSsl
Source§fn from(value: &MetaDeletedHookConfigInsecureSsl) -> Self
fn from(value: &MetaDeletedHookConfigInsecureSsl) -> Self
Converts to this type from the input type.
Source§impl Ord for MetaDeletedHookConfigInsecureSsl
impl Ord for MetaDeletedHookConfigInsecureSsl
Source§fn cmp(&self, other: &MetaDeletedHookConfigInsecureSsl) -> Ordering
fn cmp(&self, other: &MetaDeletedHookConfigInsecureSsl) -> 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 MetaDeletedHookConfigInsecureSsl
impl PartialEq for MetaDeletedHookConfigInsecureSsl
Source§fn eq(&self, other: &MetaDeletedHookConfigInsecureSsl) -> bool
fn eq(&self, other: &MetaDeletedHookConfigInsecureSsl) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for MetaDeletedHookConfigInsecureSsl
impl PartialOrd for MetaDeletedHookConfigInsecureSsl
Source§impl TryFrom<&String> for MetaDeletedHookConfigInsecureSsl
impl TryFrom<&String> for MetaDeletedHookConfigInsecureSsl
Source§impl TryFrom<&str> for MetaDeletedHookConfigInsecureSsl
impl TryFrom<&str> for MetaDeletedHookConfigInsecureSsl
impl Copy for MetaDeletedHookConfigInsecureSsl
impl Eq for MetaDeletedHookConfigInsecureSsl
impl StructuralPartialEq for MetaDeletedHookConfigInsecureSsl
Auto Trait Implementations§
impl Freeze for MetaDeletedHookConfigInsecureSsl
impl RefUnwindSafe for MetaDeletedHookConfigInsecureSsl
impl Send for MetaDeletedHookConfigInsecureSsl
impl Sync for MetaDeletedHookConfigInsecureSsl
impl Unpin for MetaDeletedHookConfigInsecureSsl
impl UnwindSafe for MetaDeletedHookConfigInsecureSsl
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