pub enum UpdateMailboxAutoReply {
AutoReplyIsDisabled(Box<AutoReplyIsDisabled>),
AutoReplyIsEnabled(Box<AutoReplyIsEnabled>),
}Expand description
UpdateMailboxAutoReply : Автоответчик на входящие письма Автоответчик на входящие письма
Variants§
AutoReplyIsDisabled(Box<AutoReplyIsDisabled>)
AutoReplyIsEnabled(Box<AutoReplyIsEnabled>)
Trait Implementations§
Source§impl Clone for UpdateMailboxAutoReply
impl Clone for UpdateMailboxAutoReply
Source§fn clone(&self) -> UpdateMailboxAutoReply
fn clone(&self) -> UpdateMailboxAutoReply
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 UpdateMailboxAutoReply
impl Debug for UpdateMailboxAutoReply
Source§impl Default for UpdateMailboxAutoReply
impl Default for UpdateMailboxAutoReply
Source§impl<'de> Deserialize<'de> for UpdateMailboxAutoReply
impl<'de> Deserialize<'de> for UpdateMailboxAutoReply
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 UpdateMailboxAutoReply
impl PartialEq for UpdateMailboxAutoReply
Source§fn eq(&self, other: &UpdateMailboxAutoReply) -> bool
fn eq(&self, other: &UpdateMailboxAutoReply) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateMailboxAutoReply
impl Serialize for UpdateMailboxAutoReply
impl StructuralPartialEq for UpdateMailboxAutoReply
Auto Trait Implementations§
impl Freeze for UpdateMailboxAutoReply
impl RefUnwindSafe for UpdateMailboxAutoReply
impl Send for UpdateMailboxAutoReply
impl Sync for UpdateMailboxAutoReply
impl Unpin for UpdateMailboxAutoReply
impl UnsafeUnpin for UpdateMailboxAutoReply
impl UnwindSafe for UpdateMailboxAutoReply
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