pub struct JidPrepQuery {
pub data: String,
}
Expand description
Request from a client to stringprep/PRECIS a string into a JID.
Fields§
§data: String
The potential JID.
Implementations§
Source§impl JidPrepQuery
impl JidPrepQuery
Sourcepub fn new<J: Into<String>>(jid: J) -> JidPrepQuery
pub fn new<J: Into<String>>(jid: J) -> JidPrepQuery
Create a new JID Prep query.
Trait Implementations§
Source§impl AsXml for JidPrepQuery
impl AsXml for JidPrepQuery
Source§impl Clone for JidPrepQuery
impl Clone for JidPrepQuery
Source§fn clone(&self) -> JidPrepQuery
fn clone(&self) -> JidPrepQuery
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 JidPrepQuery
impl Debug for JidPrepQuery
Source§impl From<&JidPrepQuery> for Element
impl From<&JidPrepQuery> for Element
Source§fn from(other: &JidPrepQuery) -> Self
fn from(other: &JidPrepQuery) -> Self
Converts to this type from the input type.
Source§impl From<JidPrepQuery> for Element
impl From<JidPrepQuery> for Element
Source§fn from(other: JidPrepQuery) -> Self
fn from(other: JidPrepQuery) -> Self
Converts to this type from the input type.
Source§impl FromXml for JidPrepQuery
impl FromXml for JidPrepQuery
Source§impl PartialEq for JidPrepQuery
impl PartialEq for JidPrepQuery
Source§impl TryFrom<Element> for JidPrepQuery
impl TryFrom<Element> for JidPrepQuery
impl IqGetPayload for JidPrepQuery
impl StructuralPartialEq for JidPrepQuery
Auto Trait Implementations§
impl Freeze for JidPrepQuery
impl RefUnwindSafe for JidPrepQuery
impl Send for JidPrepQuery
impl Sync for JidPrepQuery
impl Unpin for JidPrepQuery
impl UnwindSafe for JidPrepQuery
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