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