pub struct WhatsAppConfig {
pub enabled: bool,
pub token_env: String,
pub token_ref: Option<String>,
pub phone_number_id: String,
pub verify_token: String,
pub allowed_numbers: Vec<String>,
pub app_secret: Option<String>,
}Fields§
§enabled: bool§token_env: String§token_ref: Option<String>§phone_number_id: String§verify_token: String§allowed_numbers: Vec<String>§app_secret: Option<String>App secret for webhook X-Hub-Signature-256 verification (HMAC-SHA256).
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<'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