pub struct WhatsAppConfig {
pub enabled: bool,
pub session_path: String,
pub pairing_mode: bool,
pub allowlist: Vec<String>,
pub webhook_url: Option<String>,
pub bridge_path: String,
pub rate_limit_per_second: u32,
pub max_reconnect_attempts: u32,
pub reconnect_delay_secs: u64,
}Expand description
WhatsApp Web configuration.
Fields§
§enabled: bool§session_path: StringPath to store session credentials
pairing_mode: boolUse pairing code instead of QR code
allowlist: Vec<String>Allowed phone numbers for DMs (empty = all allowed)
webhook_url: Option<String>Optional webhook URL for notifications
bridge_path: StringPath to the Baileys bridge script
rate_limit_per_second: u32Rate limit for outgoing messages per second
max_reconnect_attempts: u32Maximum reconnection attempts
reconnect_delay_secs: u64Initial reconnection delay in seconds (increases with backoff)
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