Struct instant_epp::host::info::InfoData
source · pub struct InfoData {
pub name: String,
pub roid: String,
pub statuses: Vec<Status>,
pub addresses: Vec<IpAddr>,
pub client_id: String,
pub creator_id: String,
pub created_at: DateTime<Utc>,
pub updater_id: Option<String>,
pub updated_at: Option<DateTime<Utc>>,
pub transferred_at: Option<DateTime<Utc>>,
}Expand description
Type that represents the <infData> tag for host info response
Fields§
§name: StringThe host name
roid: StringThe host ROID
statuses: Vec<Status>The list of host statuses
addresses: Vec<IpAddr>The list of host IP addresses
client_id: StringThe epp user to whom the host belongs
creator_id: StringTHe epp user that created the host
created_at: DateTime<Utc>The host creation date
updater_id: Option<String>The epp user that last updated the host
updated_at: Option<DateTime<Utc>>The host last update date
transferred_at: Option<DateTime<Utc>>The host transfer date
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for InfoData
impl Send for InfoData
impl Sync for InfoData
impl Unpin for InfoData
impl UnwindSafe for InfoData
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