pub struct DomainCreateResponseData {
pub xmlns: String,
pub name: StringValue<'static>,
pub created_at: DateTime<Utc>,
pub expiring_at: Option<DateTime<Utc>>,
}
Expand description
Type that represents the <chkData> tag for domain create response
Fields§
§xmlns: String
XML namespace for domain response data
name: StringValue<'static>
The domain name
created_at: DateTime<Utc>
The creation date
expiring_at: Option<DateTime<Utc>>
The expiry date
Trait Implementations§
Source§impl Debug for DomainCreateResponseData
impl Debug for DomainCreateResponseData
Source§impl<'de> Deserialize<'de> for DomainCreateResponseData
impl<'de> Deserialize<'de> for DomainCreateResponseData
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
Auto Trait Implementations§
impl Freeze for DomainCreateResponseData
impl RefUnwindSafe for DomainCreateResponseData
impl Send for DomainCreateResponseData
impl Sync for DomainCreateResponseData
impl Unpin for DomainCreateResponseData
impl UnwindSafe for DomainCreateResponseData
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