pub struct ExtValue {
pub value: ResultValue,
pub reason: String,
}
Expand description
Type corresponding to the <extValue>
tag in an EPP response XML
Fields§
§value: ResultValue
Data under the <value>
tag
reason: String
Data under the <reason>
tag
Trait Implementations§
Source§impl<'xml> FromXml<'xml> for ExtValue
impl<'xml> FromXml<'xml> for ExtValue
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<ExtValue>
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>
impl Eq for ExtValue
impl StructuralPartialEq for ExtValue
Auto Trait Implementations§
impl Freeze for ExtValue
impl RefUnwindSafe for ExtValue
impl Send for ExtValue
impl Sync for ExtValue
impl Unpin for ExtValue
impl UnwindSafe for ExtValue
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