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§
§impl BareJid
impl BareJid
pub 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");
pub 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()
.
pub 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");
pub 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");
pub fn into_inner(self) -> String
pub fn into_inner(self) -> String
Return the inner String of this bare JID.
Methods from Deref<Target = Jid>§
pub fn domain(&self) -> &DomainRef
pub fn domain(&self) -> &DomainRef
The domain part of the JID as reference
pub 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
.
pub 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§
§impl AsXmlText for BareJid
impl AsXmlText for BareJid
§fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>
fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>
§impl<'de> Deserialize<'de> for BareJid
impl<'de> Deserialize<'de> for BareJid
§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>,
§impl FromXmlText for BareJid
impl FromXmlText for BareJid
§fn from_xml_text(s: String) -> Result<BareJid, Error>
fn from_xml_text(s: String) -> Result<BareJid, Error>
§impl IntoAttributeValue for BareJid
impl IntoAttributeValue for BareJid
§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
§impl Ord for BareJid
impl Ord for BareJid
§impl PartialOrd for BareJid
impl PartialOrd for BareJid
§fn partial_cmp(&self, other: &BareJid) -> Option<Ordering>
fn partial_cmp(&self, other: &BareJid) -> Option<Ordering>
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§impl Serialize for BareJid
impl Serialize for BareJid
§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,
§impl ToTokens for BareJid
impl ToTokens for BareJid
§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§
§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<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.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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