pub struct WebhookPlatformsConfig {
pub line: Option<WebhookPlatformConfig>,
pub whatsapp: Option<WebhookPlatformConfig>,
pub webhook: Option<WebhookPlatformConfig>,
}Expand description
Container for all webhook-based platform settings.
Fields§
§line: Option<WebhookPlatformConfig>§whatsapp: Option<WebhookPlatformConfig>§webhook: Option<WebhookPlatformConfig>Trait Implementations§
Source§impl Clone for WebhookPlatformsConfig
impl Clone for WebhookPlatformsConfig
Source§fn clone(&self) -> WebhookPlatformsConfig
fn clone(&self) -> WebhookPlatformsConfig
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 WebhookPlatformsConfig
impl Debug for WebhookPlatformsConfig
Source§impl Default for WebhookPlatformsConfig
impl Default for WebhookPlatformsConfig
Source§fn default() -> WebhookPlatformsConfig
fn default() -> WebhookPlatformsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookPlatformsConfig
impl<'de> Deserialize<'de> for WebhookPlatformsConfig
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 WebhookPlatformsConfig
impl RefUnwindSafe for WebhookPlatformsConfig
impl Send for WebhookPlatformsConfig
impl Sync for WebhookPlatformsConfig
impl Unpin for WebhookPlatformsConfig
impl UnsafeUnpin for WebhookPlatformsConfig
impl UnwindSafe for WebhookPlatformsConfig
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