Struct xmpp_parsers::FullJid
source · pub struct FullJid { /* private fields */ }
Expand description
A struct representing a full Jabber ID, with a resource part.
A full JID is composed of 3 components, of which only the node is optional:
- the (optional) node part is the part before the (optional)
@
. - the domain part is the mandatory part between the (optional)
@
and before the/
. - the resource part after the
/
.
Unlike a BareJid
, it always contains a resource, and should only be used when you are
certain there is no case where a resource can be missing. Otherwise, use a Jid
or
BareJid
.
Implementations§
source§impl FullJid
impl FullJid
sourcepub fn new(unnormalized: &str) -> Result<FullJid, Error>
pub fn new(unnormalized: &str) -> Result<FullJid, Error>
Constructs a full Jabber ID containing all three components. This is of the form
node@domain/resource
, where node part is optional.
If you want a non-fallible version, use FullJid::from_parts
instead.
§Examples
use jid::FullJid;
let jid = FullJid::new("node@domain/resource")?;
assert_eq!(jid.node().map(|x| x.as_str()), Some("node"));
assert_eq!(jid.domain().as_str(), "domain");
assert_eq!(jid.resource().as_str(), "resource");
sourcepub fn from_parts(
node: Option<&NodeRef>,
domain: &DomainRef,
resource: &ResourceRef
) -> FullJid
pub fn from_parts( node: Option<&NodeRef>, domain: &DomainRef, resource: &ResourceRef ) -> FullJid
Build a FullJid
from typed parts. This method cannot fail because it uses parts that have
already been parsed and stringprepped into NodePart
, DomainPart
, and ResourcePart
.
This method allocates and does not consume the typed parts.
sourcepub fn resource(&self) -> &ResourceRef
pub fn resource(&self) -> &ResourceRef
The optional resource of the Jabber ID. Since this is a full JID it is always present.
sourcepub fn into_inner(self) -> String
pub fn into_inner(self) -> String
Return the inner String of this full JID.
Methods from Deref<Target = Jid>§
sourcepub fn resource(&self) -> Option<&ResourceRef>
pub fn resource(&self) -> Option<&ResourceRef>
The optional resource of the Jabber ID. It is guaranteed to be present when the JID is
a Full variant, which you can check with Jid::is_full
.
sourcepub fn to_bare(&self) -> BareJid
pub fn to_bare(&self) -> BareJid
Allocate a new BareJid
from this JID, discarding the resource.
sourcepub fn as_str(&self) -> &str
pub fn as_str(&self) -> &str
Return a reference to the canonical string representation of the JID.
sourcepub fn try_as_full(&self) -> Result<&FullJid, &BareJid>
pub fn try_as_full(&self) -> Result<&FullJid, &BareJid>
Try to convert this Jid reference to a &FullJid
if it
contains a resource and return a &BareJid
otherwise.
This is useful for match blocks:
let jid: Jid = "foo@bar".parse().unwrap();
match jid.try_as_full() {
Ok(full) => println!("it is full: {:?}", full),
Err(bare) => println!("it is bare: {:?}", bare),
}
Trait Implementations§
source§impl<'de> Deserialize<'de> for FullJid
impl<'de> Deserialize<'de> for FullJid
source§fn deserialize<D>(
deserializer: D
) -> Result<FullJid, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<FullJid, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
source§impl From<BindResponse> for FullJid
impl From<BindResponse> for FullJid
source§fn from(bind: BindResponse) -> FullJid
fn from(bind: BindResponse) -> FullJid
source§impl IntoAttributeValue for FullJid
impl IntoAttributeValue for FullJid
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
source§impl Ord for FullJid
impl Ord for FullJid
source§impl PartialEq<FullJid> for Jid
impl PartialEq<FullJid> for Jid
source§impl PartialEq for FullJid
impl PartialEq for FullJid
source§impl PartialOrd for FullJid
impl PartialOrd for FullJid
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more