pub struct MailTips {
pub email_address: EmailAddress,
pub automatic_replies: AutomaticRepliesMailTips,
pub mailbox_full: bool,
pub custom_mail_tip: String,
pub external_member_count: i32,
pub total_member_count: i32,
pub delivery_restricted: bool,
pub is_moderated: bool,
pub recipient_scope: RecipientScopeType,
pub recipient_suggestions: Vec<Recipient>,
pub max_message_size: i32,
pub error: MailTipsError,
}
Fields§
§email_address: EmailAddress
§automatic_replies: AutomaticRepliesMailTips
§mailbox_full: bool
§custom_mail_tip: String
§external_member_count: i32
§total_member_count: i32
§delivery_restricted: bool
§is_moderated: bool
§recipient_scope: RecipientScopeType
§recipient_suggestions: Vec<Recipient>
§max_message_size: i32
§error: MailTipsError
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MailTips
impl<'de> Deserialize<'de> for MailTips
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
impl Eq for MailTips
impl StructuralPartialEq for MailTips
Auto Trait Implementations§
impl Freeze for MailTips
impl RefUnwindSafe for MailTips
impl Send for MailTips
impl Sync for MailTips
impl Unpin for MailTips
impl UnwindSafe for MailTips
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