pub struct JidPrepResponse {
    pub jid: Jid,
}Expand description
Response from the server with the stringprep’d/PRECIS’d JID.
Fields§
§jid: JidThe JID.
Trait Implementations§
Source§impl AsXml for JidPrepResponse
 
impl AsXml for JidPrepResponse
Source§type ItemIter<'xso_proc_as_xml_iter_lifetime> = JidPrepResponseAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
 
type ItemIter<'xso_proc_as_xml_iter_lifetime> = JidPrepResponseAsXmlIterator<'xso_proc_as_xml_iter_lifetime>
The iterator type. Read more
Source§impl Clone for JidPrepResponse
 
impl Clone for JidPrepResponse
Source§fn clone(&self) -> JidPrepResponse
 
fn clone(&self) -> JidPrepResponse
Returns a duplicate 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(other: &JidPrepResponse) -> Self
 
fn from(other: &JidPrepResponse) -> Self
Converts to this type from the input type.
Source§impl From<JidPrepResponse> for Element
 
impl From<JidPrepResponse> for Element
Source§fn from(other: JidPrepResponse) -> Self
 
fn from(other: JidPrepResponse) -> Self
Converts to this type from the input type.
Source§impl FromXml for JidPrepResponse
 
impl FromXml for JidPrepResponse
Source§type Builder = JidPrepResponseFromXmlBuilder
 
type Builder = JidPrepResponseFromXmlBuilder
A builder type used to construct the element. Read more
Source§fn from_events(
    name: QName,
    attrs: AttrMap,
    ctx: &Context<'_>,
) -> Result<Self::Builder, FromEventsError>
 
fn from_events( name: QName, attrs: AttrMap, ctx: &Context<'_>, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
Source§fn xml_name_matcher() -> XmlNameMatcher<'static>
 
fn xml_name_matcher() -> XmlNameMatcher<'static>
Return a predicate which determines if 
Self may be parsed from
a given XML element. Read moreSource§impl PartialEq for JidPrepResponse
 
impl PartialEq for JidPrepResponse
Source§impl TryFrom<Element> for JidPrepResponse
 
impl TryFrom<Element> for JidPrepResponse
Source§type Error = FromElementError
 
type Error = FromElementError
The type returned in the event of a conversion error.
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