pub struct InfoData {Show 14 fields
pub id: String,
pub roid: String,
pub statuses: Vec<Status>,
pub postal_info: PostalInfo<'static>,
pub voice: Option<Voice<'static>>,
pub fax: Option<Fax<'static>>,
pub email: String,
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>>,
pub auth_info: Option<ContactAuthInfo<'static>>,
}Expand description
Type that represents the <infData> tag for contact check response
Fields§
§id: StringThe contact id
roid: StringThe contact ROID
statuses: Vec<Status>The list of contact statuses
postal_info: PostalInfo<'static>The postal info for the contact
voice: Option<Voice<'static>>The voice data for the contact
fax: Option<Fax<'static>>The fax data for the contact
email: StringThe email for the contact
client_id: StringThe epp user to whom the contact belongs
creator_id: StringThe epp user who created the contact
created_at: DateTime<Utc>The creation date
updater_id: Option<String>The epp user who last updated the contact
updated_at: Option<DateTime<Utc>>The last update date
transferred_at: Option<DateTime<Utc>>The contact transfer date
auth_info: Option<ContactAuthInfo<'static>>The contact auth info
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