Struct xmpp_parsers::BareJid
source · pub struct BareJid { /* private fields */ }
Expand description
A struct representing a bare Jabber ID, without a resource part.
A bare JID is composed of 2 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/
.
Unlike a FullJid
, it can’t contain a resource, and should only be used when you are certain
there is no case where a resource can be set. Otherwise, use a Jid
or FullJid
.
Implementations§
source§impl BareJid
impl BareJid
sourcepub fn new(s: &str) -> Result<BareJid, Error>
pub fn new(s: &str) -> Result<BareJid, Error>
Constructs a bare Jabber ID, containing two components. This is of the form
node
@domain
, where node part is optional.
If you want a non-fallible version, use BareJid::from_parts
instead.
§Examples
use jid::BareJid;
let jid = BareJid::new("node@domain")?;
assert_eq!(jid.node().map(|x| x.as_str()), Some("node"));
assert_eq!(jid.domain().as_str(), "domain");
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) -> BareJid
pub fn from_parts(node: Option<&NodeRef>, domain: &DomainRef) -> BareJid
Build a BareJid
from typed parts. This method cannot fail because it uses parts that have
already been parsed and stringprepped into NodePart
and DomainPart
.
This method allocates and does not consume the typed parts. To avoid
allocation if node
is known to be None
and domain
is owned, you
can use domain.into()
.
sourcepub fn with_resource(self, resource: &ResourceRef) -> FullJid
pub fn with_resource(self, resource: &ResourceRef) -> FullJid
Constructs a BareJid
from the bare JID, by specifying a ResourcePart
.
If you’d like to specify a stringy resource, use BareJid::with_resource_str
instead.
§Examples
use jid::{BareJid, ResourcePart};
let resource = ResourcePart::new("resource").unwrap();
let bare = BareJid::new("node@domain").unwrap();
let full = bare.with_resource(&resource);
assert_eq!(full.node().map(|x| x.as_str()), Some("node"));
assert_eq!(full.domain().as_str(), "domain");
assert_eq!(full.resource().as_str(), "resource");
sourcepub fn with_resource_str(self, resource: &str) -> Result<FullJid, Error>
pub fn with_resource_str(self, resource: &str) -> Result<FullJid, Error>
Constructs a FullJid
from the bare JID, by specifying a stringy resource
.
If your resource has already been parsed into a ResourcePart
, use BareJid::with_resource
.
§Examples
use jid::BareJid;
let bare = BareJid::new("node@domain").unwrap();
let full = bare.with_resource_str("resource").unwrap();
assert_eq!(full.node().map(|x| x.as_str()), Some("node"));
assert_eq!(full.domain().as_str(), "domain");
assert_eq!(full.resource().as_str(), "resource");
Trait Implementations§
source§impl From<DomainPart> for BareJid
impl From<DomainPart> for BareJid
source§fn from(other: DomainPart) -> BareJid
fn from(other: DomainPart) -> BareJid
source§impl IntoAttributeValue for BareJid
impl IntoAttributeValue for BareJid
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
source§impl Ord for BareJid
impl Ord for BareJid
source§impl PartialEq<BareJid> for Jid
impl PartialEq<BareJid> for Jid
source§impl PartialEq for BareJid
impl PartialEq for BareJid
source§impl PartialOrd for BareJid
impl PartialOrd for BareJid
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