pub struct MailboxAutoReply {
pub is_enabled: bool,
pub message: String,
pub subject: String,
}Expand description
MailboxAutoReply : Автоответчик на входящие письма
Fields§
§is_enabled: boolВключен ли автоответчик на входящие письма
message: StringСообщение автоответчика на входящие письма
subject: StringТема сообщения автоответчика на входящие письма
Implementations§
Trait Implementations§
Source§impl Clone for MailboxAutoReply
impl Clone for MailboxAutoReply
Source§fn clone(&self) -> MailboxAutoReply
fn clone(&self) -> MailboxAutoReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MailboxAutoReply
impl Debug for MailboxAutoReply
Source§impl Default for MailboxAutoReply
impl Default for MailboxAutoReply
Source§fn default() -> MailboxAutoReply
fn default() -> MailboxAutoReply
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MailboxAutoReply
impl<'de> Deserialize<'de> for MailboxAutoReply
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
Source§impl PartialEq for MailboxAutoReply
impl PartialEq for MailboxAutoReply
Source§fn eq(&self, other: &MailboxAutoReply) -> bool
fn eq(&self, other: &MailboxAutoReply) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MailboxAutoReply
impl Serialize for MailboxAutoReply
impl StructuralPartialEq for MailboxAutoReply
Auto Trait Implementations§
impl Freeze for MailboxAutoReply
impl RefUnwindSafe for MailboxAutoReply
impl Send for MailboxAutoReply
impl Sync for MailboxAutoReply
impl Unpin for MailboxAutoReply
impl UnsafeUnpin for MailboxAutoReply
impl UnwindSafe for MailboxAutoReply
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