pub struct WhatsAppAccount {
pub id: String,
pub tenant_id: String,
pub name: String,
pub phone_number: String,
pub phone_number_id: String,
pub auto_reply: AutoReplyConfig,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§tenant_id: String§name: String§phone_number: String§phone_number_id: String§auto_reply: AutoReplyConfig§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for WhatsAppAccount
impl Clone for WhatsAppAccount
Source§fn clone(&self) -> WhatsAppAccount
fn clone(&self) -> WhatsAppAccount
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 WhatsAppAccount
impl Debug for WhatsAppAccount
Source§impl<'de> Deserialize<'de> for WhatsAppAccount
impl<'de> Deserialize<'de> for WhatsAppAccount
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 WhatsAppAccount
impl RefUnwindSafe for WhatsAppAccount
impl Send for WhatsAppAccount
impl Sync for WhatsAppAccount
impl Unpin for WhatsAppAccount
impl UnwindSafe for WhatsAppAccount
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