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