pub struct FullJid { /* private fields */ }
Expand description
A struct representing a full Jabber ID, with a resource part.
A full JID is composed of 3 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/
. - the resource part after the
/
.
Unlike a BareJid
, it always contains a resource, and should only be used when you are
certain there is no case where a resource can be missing. Otherwise, use a Jid
or
BareJid
.
Implementations§
source§impl FullJid
impl FullJid
sourcepub fn new(unnormalized: &str) -> Result<FullJid, Error>
pub fn new(unnormalized: &str) -> Result<FullJid, Error>
Constructs a full Jabber ID containing all three components. This is of the form
node@domain/resource
, where node part is optional.
If you want a non-fallible version, use FullJid::from_parts
instead.
§Examples
use jid::FullJid;
let jid = FullJid::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().as_str(), "resource");
sourcepub fn from_parts(
node: Option<&NodeRef>,
domain: &DomainRef,
resource: &ResourceRef,
) -> FullJid
pub fn from_parts( node: Option<&NodeRef>, domain: &DomainRef, resource: &ResourceRef, ) -> FullJid
Build a FullJid
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 resource(&self) -> &ResourceRef
pub fn resource(&self) -> &ResourceRef
The optional resource of the Jabber ID. Since this is a full JID it is always present.
sourcepub fn into_inner(self) -> String
pub fn into_inner(self) -> String
Return the inner String of this full 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 FullJid
Available on crate feature jid
only.
impl AsXmlText for FullJid
jid
only.source§fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>
fn as_xml_text(&self) -> Result<Cow<'_, str>, Error>
Convert jid::FullJid
to XML text via Display
.
This implementation never fails.
source§impl<'de> Deserialize<'de> for FullJid
Available on crate feature serde
only.
impl<'de> Deserialize<'de> for FullJid
serde
only.source§fn deserialize<D>(
deserializer: D,
) -> Result<FullJid, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<FullJid, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
source§impl From<BindResponse> for FullJid
impl From<BindResponse> for FullJid
source§fn from(bind: BindResponse) -> FullJid
fn from(bind: BindResponse) -> FullJid
source§impl FromXmlText for FullJid
Available on crate feature jid
only.
impl FromXmlText for FullJid
jid
only.source§fn from_xml_text(s: String) -> Result<FullJid, Error>
fn from_xml_text(s: String) -> Result<FullJid, Error>
Parse jid::FullJid
from XML text via FromStr
.
source§impl IntoAttributeValue for FullJid
Available on crate feature minidom
only.
impl IntoAttributeValue for FullJid
minidom
only.source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
source§impl Ord for FullJid
impl Ord for FullJid
source§impl PartialOrd for FullJid
impl PartialOrd for FullJid
source§impl Serialize for FullJid
Available on crate feature serde
only.
impl Serialize for FullJid
serde
only.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 FullJid
Available on crate feature quote
only.
impl ToTokens for FullJid
quote
only.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 FullJid
impl StructuralPartialEq for FullJid
Auto Trait Implementations§
impl Freeze for FullJid
impl RefUnwindSafe for FullJid
impl Send for FullJid
impl Sync for FullJid
impl Unpin for FullJid
impl UnwindSafe for FullJid
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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