pub struct ResponseStatus {
pub result: EppResult,
pub tr_ids: ResponseTRID,
}Expand description
Type corresponding to the <response> tag in an EPP response XML
without <msgQ> or <resData> sections. Generally used for error handling
Fields§
§result: EppResultData under the <result> tag
tr_ids: ResponseTRIDData under the <trID> tag
Trait Implementations§
Source§impl Debug for ResponseStatus
impl Debug for ResponseStatus
Source§impl<'xml> FromXml<'xml> for ResponseStatus
impl<'xml> FromXml<'xml> for ResponseStatus
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<ResponseStatus>
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 ResponseStatus
impl PartialEq for ResponseStatus
impl StructuralPartialEq for ResponseStatus
Auto Trait Implementations§
impl Freeze for ResponseStatus
impl RefUnwindSafe for ResponseStatus
impl Send for ResponseStatus
impl Sync for ResponseStatus
impl Unpin for ResponseStatus
impl UnwindSafe for ResponseStatus
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