pub struct UpdateDomain {
pub is_autoprolong_enabled: Option<bool>,
pub linked_ip: Option<Option<String>>,
}Fields§
§is_autoprolong_enabled: Option<bool>Это логическое значение, которое показывает, включено ли автопродление домена.
linked_ip: Option<Option<String>>Привязанный к домену IP-адрес.
Implementations§
Source§impl UpdateDomain
impl UpdateDomain
pub fn new() -> UpdateDomain
Trait Implementations§
Source§impl Clone for UpdateDomain
impl Clone for UpdateDomain
Source§fn clone(&self) -> UpdateDomain
fn clone(&self) -> UpdateDomain
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 UpdateDomain
impl Debug for UpdateDomain
Source§impl Default for UpdateDomain
impl Default for UpdateDomain
Source§fn default() -> UpdateDomain
fn default() -> UpdateDomain
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateDomain
impl<'de> Deserialize<'de> for UpdateDomain
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 UpdateDomain
impl PartialEq for UpdateDomain
Source§fn eq(&self, other: &UpdateDomain) -> bool
fn eq(&self, other: &UpdateDomain) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateDomain
impl Serialize for UpdateDomain
impl StructuralPartialEq for UpdateDomain
Auto Trait Implementations§
impl Freeze for UpdateDomain
impl RefUnwindSafe for UpdateDomain
impl Send for UpdateDomain
impl Sync for UpdateDomain
impl Unpin for UpdateDomain
impl UnsafeUnpin for UpdateDomain
impl UnwindSafe for UpdateDomain
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