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().map(|x| x.as_str()), Some("node"));
assert_eq!(jid.domain().as_str(), "domain");
assert_eq!(jid.resource().map(|x| x.as_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<&NodeRef>,
domain: &DomainRef,
resource: Option<&ResourceRef>
) -> Jid
pub fn from_parts( node: Option<&NodeRef>, domain: &DomainRef, resource: Option<&ResourceRef> ) -> 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. To avoid
allocation if both node
and resource
are known to be None
and
domain
is owned, you can use domain.into()
.
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.
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 From<DomainPart> for Jid
impl From<DomainPart> for Jid
source§fn from(other: DomainPart) -> Jid
fn from(other: DomainPart) -> 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 moreimpl Eq for Jid
impl StructuralPartialEq for Jid
Auto Trait Implementations§
impl RefUnwindSafe for Jid
impl Send for Jid
impl Sync for Jid
impl Unpin for Jid
impl UnwindSafe for Jid
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
source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.