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§
Source§impl<'xml> FromXml<'xml> for InfoData
impl<'xml> FromXml<'xml> for InfoData
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<InfoData>
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 InfoData
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