Struct jid::ResourcePart
source · pub struct ResourcePart(/* private fields */);
Expand description
The ResourcePart
is the optional part after the /
in a Jid
. It is
mandatory in FullJid
.
Implementations§
source§impl ResourcePart
impl ResourcePart
sourcepub fn new(s: &str) -> Result<ResourcePart, Error>
pub fn new(s: &str) -> Result<ResourcePart, Error>
Build a new ResourcePart
from a string slice. Will fail in case of stringprep
validation error.
Trait Implementations§
source§impl Clone for ResourcePart
impl Clone for ResourcePart
source§fn clone(&self) -> ResourcePart
fn clone(&self) -> ResourcePart
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ResourcePart
impl Debug for ResourcePart
source§impl Display for ResourcePart
impl Display for ResourcePart
source§impl Hash for ResourcePart
impl Hash for ResourcePart
source§impl Ord for ResourcePart
impl Ord for ResourcePart
source§fn cmp(&self, other: &ResourcePart) -> Ordering
fn cmp(&self, other: &ResourcePart) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ResourcePart
impl PartialEq for ResourcePart
source§fn eq(&self, other: &ResourcePart) -> bool
fn eq(&self, other: &ResourcePart) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ResourcePart
impl PartialOrd for ResourcePart
source§fn partial_cmp(&self, other: &ResourcePart) -> Option<Ordering>
fn partial_cmp(&self, other: &ResourcePart) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for ResourcePart
impl StructuralPartialEq for ResourcePart
Auto Trait Implementations§
impl RefUnwindSafe for ResourcePart
impl Send for ResourcePart
impl Sync for ResourcePart
impl Unpin for ResourcePart
impl UnwindSafe for ResourcePart
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
Mutably borrows from an owned value. Read more