Struct xmpp_parsers::jid_prep::JidPrepResponse
source · pub struct JidPrepResponse {
pub jid: <JidCodec as Codec>::Decoded,
}
Expand description
Response from the server with the stringprep’d/PRECIS’d JID.
Fields§
§jid: <JidCodec as Codec>::Decoded
The JID.
Trait Implementations§
source§impl Clone for JidPrepResponse
impl Clone for JidPrepResponse
source§fn clone(&self) -> JidPrepResponse
fn clone(&self) -> JidPrepResponse
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for JidPrepResponse
impl Debug for JidPrepResponse
source§impl From<JidPrepResponse> for Element
impl From<JidPrepResponse> for Element
source§fn from(elem: JidPrepResponse) -> Element
fn from(elem: JidPrepResponse) -> Element
Converts to this type from the input type.
source§impl FromXml for JidPrepResponse
impl FromXml for JidPrepResponse
§type Builder = FromEventsViaElement<JidPrepResponse>
type Builder = FromEventsViaElement<JidPrepResponse>
A builder type used to construct the element. Read more
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for JidPrepResponse
impl IntoXml for JidPrepResponse
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.source§impl PartialEq for JidPrepResponse
impl PartialEq for JidPrepResponse
source§fn eq(&self, other: &JidPrepResponse) -> bool
fn eq(&self, other: &JidPrepResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for JidPrepResponse
impl TryFrom<Element> for JidPrepResponse
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<JidPrepResponse, FromElementError>
fn try_from(elem: Element) -> Result<JidPrepResponse, FromElementError>
Performs the conversion.
impl IqResultPayload for JidPrepResponse
impl StructuralPartialEq for JidPrepResponse
Auto Trait Implementations§
impl Freeze for JidPrepResponse
impl RefUnwindSafe for JidPrepResponse
impl Send for JidPrepResponse
impl Sync for JidPrepResponse
impl Unpin for JidPrepResponse
impl UnwindSafe for JidPrepResponse
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