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(s: &str) -> Result<FullJid, Error>
pub fn new(s: &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 into_inner(self) -> String
pub fn into_inner(self) -> String
Returns the inner String of this JID.
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 to_bare(&self) -> BareJid
pub fn to_bare(&self) -> BareJid
Allocate a new BareJid
from this full JID, discarding the resource.
Trait Implementations§
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