pub struct TransferData {
pub name: String,
pub transfer_status: String,
pub requester_id: String,
pub requested_at: DateTime<Utc>,
pub ack_id: String,
pub ack_by: DateTime<Utc>,
pub expiring_at: Option<DateTime<Utc>>,
}Expand description
Type that represents the <trnData> tag for domain transfer response
Fields§
§name: StringThe domain name
transfer_status: StringThe domain transfer status
requester_id: StringThe epp user who requested the transfer
requested_at: DateTime<Utc>The transfer rquest date
ack_id: StringThe epp user who should acknowledge the transfer request
ack_by: DateTime<Utc>THe date by which the acknowledgment should be made
expiring_at: Option<DateTime<Utc>>The domain expiry date
Trait Implementations§
Source§impl Debug for TransferData
impl Debug for TransferData
Source§impl<'xml> FromXml<'xml> for TransferData
impl<'xml> FromXml<'xml> for TransferData
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<TransferData>
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml>, ) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for TransferData
impl RefUnwindSafe for TransferData
impl Send for TransferData
impl Sync for TransferData
impl Unpin for TransferData
impl UnwindSafe for TransferData
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