Enum xmpp_parsers::Jid
source · pub enum Jid {
Bare(BareJid),
Full(FullJid),
}
Expand description
An enum representing a Jabber ID. It can be either a FullJid
or a BareJid
.
Variants§
Bare(BareJid)
Contains a BareJid
, without a resource part
Full(FullJid)
Contains a FullJid
, with a resource part
Implementations§
source§impl Jid
impl Jid
sourcepub fn new(s: &str) -> Result<Jid, Error>
pub fn new(s: &str) -> Result<Jid, Error>
Constructs a Jabber ID from a string. This is of the form
node
@domain
/resource
, where node and resource parts are optional.
If you want a non-fallible version, use Jid::from_parts
instead.
§Examples
use jid::Jid;
let jid = Jid::new("node@domain/resource")?;
assert_eq!(jid.node_str(), Some("node"));
assert_eq!(jid.domain_str(), "domain");
assert_eq!(jid.resource_str(), Some("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<&NodePart>,
domain: &DomainPart,
resource: Option<&ResourcePart>,
) -> Jid
pub fn from_parts( node: Option<&NodePart>, domain: &DomainPart, resource: Option<&ResourcePart>, ) -> Jid
Build a Jid
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 node_str(&self) -> Option<&str>
pub fn node_str(&self) -> Option<&str>
The optional node part of the JID, as a stringy reference
sourcepub fn domain(&self) -> DomainPart
pub fn domain(&self) -> DomainPart
The domain part of the JID, as a DomainPart
sourcepub fn domain_str(&self) -> &str
pub fn domain_str(&self) -> &str
The domain part of the JID, as a stringy reference
sourcepub fn resource(&self) -> Option<ResourcePart>
pub fn resource(&self) -> Option<ResourcePart>
The optional resource part of the JID, as a ResourcePart
. It is guaranteed to be present
when the JID is a Full variant, which you can check with Jid::is_full
.
sourcepub fn resource_str(&self) -> Option<&str>
pub fn resource_str(&self) -> Option<&str>
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.
Trait Implementations§
source§impl From<BindResponse> for Jid
impl From<BindResponse> for Jid
source§fn from(bind: BindResponse) -> Jid
fn from(bind: BindResponse) -> Jid
source§impl IntoAttributeValue for Jid
impl IntoAttributeValue for Jid
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
source§impl Ord for Jid
impl Ord for Jid
source§impl PartialEq<BareJid> for Jid
impl PartialEq<BareJid> for Jid
source§impl PartialEq<FullJid> for Jid
impl PartialEq<FullJid> for Jid
source§impl PartialOrd for Jid
impl PartialOrd for Jid
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