pub struct WhatsAppConfig {
pub enabled: bool,
pub bridge_url: String,
pub allow_from: Vec<String>,
}Expand description
WhatsApp channel configuration
Fields§
§enabled: bool§bridge_url: String§allow_from: Vec<String>Trait Implementations§
Source§impl Clone for WhatsAppConfig
impl Clone for WhatsAppConfig
Source§fn clone(&self) -> WhatsAppConfig
fn clone(&self) -> WhatsAppConfig
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 WhatsAppConfig
impl Debug for WhatsAppConfig
Source§impl Default for WhatsAppConfig
impl Default for WhatsAppConfig
Source§impl<'de> Deserialize<'de> for WhatsAppConfig
impl<'de> Deserialize<'de> for WhatsAppConfig
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 WhatsAppConfig
impl RefUnwindSafe for WhatsAppConfig
impl Send for WhatsAppConfig
impl Sync for WhatsAppConfig
impl Unpin for WhatsAppConfig
impl UnsafeUnpin for WhatsAppConfig
impl UnwindSafe for WhatsAppConfig
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