Struct instant_epp::response::MessageQueue
source · pub struct MessageQueue {
pub count: u32,
pub id: String,
pub date: Option<DateTime<Utc>>,
pub message: Option<Message>,
}Expand description
Type corresponding to the <msgQ> tag in an EPP response XML
Fields§
§count: u32The message count
id: StringThe message ID
date: Option<DateTime<Utc>>The message date
message: Option<Message>The message text
Trait Implementations§
source§impl Debug for MessageQueue
impl Debug for MessageQueue
source§impl<'xml> FromXml<'xml> for MessageQueue
impl<'xml> FromXml<'xml> for MessageQueue
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<MessageQueue>
const KIND: Kind = ::instant_xml::Kind::Element
source§impl PartialEq for MessageQueue
impl PartialEq for MessageQueue
source§fn eq(&self, other: &MessageQueue) -> bool
fn eq(&self, other: &MessageQueue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for MessageQueue
impl StructuralEq for MessageQueue
impl StructuralPartialEq for MessageQueue
Auto Trait Implementations§
impl RefUnwindSafe for MessageQueue
impl Send for MessageQueue
impl Sync for MessageQueue
impl Unpin for MessageQueue
impl UnwindSafe for MessageQueue
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