pub struct ResponseTRID {
pub client_tr_id: Option<String>,
pub server_tr_id: String,
}
Expand description
Type corresponding to the <trID>
tag in an EPP response XML
Fields§
§client_tr_id: Option<String>
The client TRID
server_tr_id: String
The server TRID
Trait Implementations§
Source§impl Debug for ResponseTRID
impl Debug for ResponseTRID
Source§impl<'xml> FromXml<'xml> for ResponseTRID
impl<'xml> FromXml<'xml> for ResponseTRID
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<ResponseTRID>
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>
Source§impl PartialEq for ResponseTRID
impl PartialEq for ResponseTRID
impl Eq for ResponseTRID
impl StructuralPartialEq for ResponseTRID
Auto Trait Implementations§
impl Freeze for ResponseTRID
impl RefUnwindSafe for ResponseTRID
impl Send for ResponseTRID
impl Sync for ResponseTRID
impl Unpin for ResponseTRID
impl UnwindSafe for ResponseTRID
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