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(unnormalized: &str) -> Result<BareJid, Error>
pub fn new(unnormalized: &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 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");
sourcepub fn into_inner(self) -> String
pub fn into_inner(self) -> String
Return the inner String of this bare 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 AsXmlText for BareJid
impl AsXmlText for BareJid
source§impl<'de> Deserialize<'de> for BareJid
impl<'de> Deserialize<'de> for BareJid
source§fn deserialize<D>(
deserializer: D,
) -> Result<BareJid, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<BareJid, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
source§impl From<DomainPart> for BareJid
impl From<DomainPart> for BareJid
source§fn from(other: DomainPart) -> BareJid
fn from(other: DomainPart) -> BareJid
source§impl FromXmlText for BareJid
impl FromXmlText for 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 moresource§impl Serialize for BareJid
impl Serialize for BareJid
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
source§impl ToTokens for BareJid
impl ToTokens for BareJid
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for BareJid
impl StructuralPartialEq for BareJid
Auto Trait Implementations§
impl Freeze for BareJid
impl RefUnwindSafe for BareJid
impl Send for BareJid
impl Sync for BareJid
impl Unpin for BareJid
impl UnwindSafe for BareJid
Blanket Implementations§
source§impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
CompactString
. Read more