pub struct SettingsWebhooks {
pub internet_required: Option<bool>,
pub retry_count: Option<i32>,
pub signing_key: Option<String>,
}Expand description
Settings for webhook functionality.
Fields§
§internet_required: Option<bool>§retry_count: Option<i32>§signing_key: Option<String>Trait Implementations§
Source§impl Clone for SettingsWebhooks
impl Clone for SettingsWebhooks
Source§fn clone(&self) -> SettingsWebhooks
fn clone(&self) -> SettingsWebhooks
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 SettingsWebhooks
impl Debug for SettingsWebhooks
Source§impl<'de> Deserialize<'de> for SettingsWebhooks
impl<'de> Deserialize<'de> for SettingsWebhooks
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 SettingsWebhooks
impl RefUnwindSafe for SettingsWebhooks
impl Send for SettingsWebhooks
impl Sync for SettingsWebhooks
impl Unpin for SettingsWebhooks
impl UnsafeUnpin for SettingsWebhooks
impl UnwindSafe for SettingsWebhooks
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