pub struct UpdateMailbox {
pub auto_reply: Option<Box<UpdateMailboxAutoReply>>,
pub spam_filter: Option<Box<UpdateMailboxSpamFilter>>,
pub forwarding_incoming: Option<Box<UpdateMailboxForwardingIncoming>>,
pub forwarding_outgoing: Option<Box<UpdateMailboxForwardingOutgoing>>,
pub comment: Option<String>,
pub password: Option<String>,
}Expand description
UpdateMailbox : Изменение почтового ящика
Fields§
§auto_reply: Option<Box<UpdateMailboxAutoReply>>§spam_filter: Option<Box<UpdateMailboxSpamFilter>>§forwarding_incoming: Option<Box<UpdateMailboxForwardingIncoming>>§forwarding_outgoing: Option<Box<UpdateMailboxForwardingOutgoing>>§comment: Option<String>Комментарий к почтовому ящику
password: Option<String>Пароль почтового ящика
Implementations§
Source§impl UpdateMailbox
impl UpdateMailbox
Sourcepub fn new() -> UpdateMailbox
pub fn new() -> UpdateMailbox
Изменение почтового ящика
Trait Implementations§
Source§impl Clone for UpdateMailbox
impl Clone for UpdateMailbox
Source§fn clone(&self) -> UpdateMailbox
fn clone(&self) -> UpdateMailbox
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 UpdateMailbox
impl Debug for UpdateMailbox
Source§impl Default for UpdateMailbox
impl Default for UpdateMailbox
Source§fn default() -> UpdateMailbox
fn default() -> UpdateMailbox
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateMailbox
impl<'de> Deserialize<'de> for UpdateMailbox
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 UpdateMailbox
impl PartialEq for UpdateMailbox
Source§fn eq(&self, other: &UpdateMailbox) -> bool
fn eq(&self, other: &UpdateMailbox) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateMailbox
impl Serialize for UpdateMailbox
impl StructuralPartialEq for UpdateMailbox
Auto Trait Implementations§
impl Freeze for UpdateMailbox
impl RefUnwindSafe for UpdateMailbox
impl Send for UpdateMailbox
impl Sync for UpdateMailbox
impl Unpin for UpdateMailbox
impl UnsafeUnpin for UpdateMailbox
impl UnwindSafe for UpdateMailbox
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