Struct instant_epp::response::ResponseStatus
source · 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
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>
type Accumulator = Option<ResponseStatus>
const KIND: Kind = ::instant_xml::Kind::Element
source§impl PartialEq for ResponseStatus
impl PartialEq for ResponseStatus
source§fn eq(&self, other: &ResponseStatus) -> bool
fn eq(&self, other: &ResponseStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.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