pub struct DomainTransfer {
pub id: String,
pub domain_id: String,
pub domain_name: Option<String>,
pub source_label: Option<String>,
pub target_email: String,
pub status: String,
pub note: Option<String>,
pub cooloff_until: Option<String>,
pub initiated_at: String,
pub accepted_at: Option<String>,
pub completed_at: Option<String>,
pub expires_at: String,
}Expand description
A domain transfer record.
Fields§
§id: StringTransfer id.
domain_id: StringThe domain being transferred.
domain_name: Option<String>The domain name.
source_label: Option<String>A label for the source account.
target_email: StringThe recipient email.
status: StringTransfer status.
note: Option<String>An optional note.
cooloff_until: Option<String>Cool-off deadline, if any.
initiated_at: StringWhen the transfer was initiated.
accepted_at: Option<String>When the transfer was accepted, if at all.
completed_at: Option<String>When the transfer completed, if at all.
expires_at: StringWhen the transfer offer expires.
Trait Implementations§
Source§impl Clone for DomainTransfer
impl Clone for DomainTransfer
Source§fn clone(&self) -> DomainTransfer
fn clone(&self) -> DomainTransfer
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 DomainTransfer
impl Debug for DomainTransfer
Source§impl<'de> Deserialize<'de> for DomainTransfer
impl<'de> Deserialize<'de> for DomainTransfer
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 DomainTransfer
impl RefUnwindSafe for DomainTransfer
impl Send for DomainTransfer
impl Sync for DomainTransfer
impl Unpin for DomainTransfer
impl UnsafeUnpin for DomainTransfer
impl UnwindSafe for DomainTransfer
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