Struct jid::DomainPart
source · pub struct DomainPart(/* private fields */);
Expand description
The DomainPart
is the part between the (optional) @
and the (optional) /
in any
Jid
, whether BareJid
or FullJid
.
Implementations§
source§impl DomainPart
impl DomainPart
sourcepub fn new(s: &str) -> Result<DomainPart, Error>
pub fn new(s: &str) -> Result<DomainPart, Error>
Build a new DomainPart
from a string slice. Will fail in case of stringprep validation
error.
Trait Implementations§
source§impl Clone for DomainPart
impl Clone for DomainPart
source§fn clone(&self) -> DomainPart
fn clone(&self) -> DomainPart
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 DomainPart
impl Debug for DomainPart
source§impl Display for DomainPart
impl Display for DomainPart
source§impl Hash for DomainPart
impl Hash for DomainPart
source§impl Ord for DomainPart
impl Ord for DomainPart
source§fn cmp(&self, other: &DomainPart) -> Ordering
fn cmp(&self, other: &DomainPart) -> 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 DomainPart
impl PartialEq for DomainPart
source§fn eq(&self, other: &DomainPart) -> bool
fn eq(&self, other: &DomainPart) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for DomainPart
impl PartialOrd for DomainPart
source§fn partial_cmp(&self, other: &DomainPart) -> Option<Ordering>
fn partial_cmp(&self, other: &DomainPart) -> 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 DomainPart
impl StructuralPartialEq for DomainPart
Auto Trait Implementations§
impl Freeze for DomainPart
impl RefUnwindSafe for DomainPart
impl Send for DomainPart
impl Sync for DomainPart
impl Unpin for DomainPart
impl UnwindSafe for DomainPart
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