Struct trust_dns_proto::rr::domain::Label
source · pub struct Label(/* private fields */);
Expand description
Labels are always stored as ASCII, unicode characters must be encoded with punycode
Implementations§
source§impl Label
impl Label
sourcepub fn from_raw_bytes(bytes: &[u8]) -> ProtoResult<Self>
pub fn from_raw_bytes(bytes: &[u8]) -> ProtoResult<Self>
These must only be ASCII, with unicode encoded to PunyCode, or other such transformation.
This uses the bytes as raw ascii values, with nothing escaped on the wire.
Generally users should use from_str
or from_ascii
sourcepub fn from_utf8(s: &str) -> ProtoResult<Self>
pub fn from_utf8(s: &str) -> ProtoResult<Self>
Translates this string into IDNA safe name, encoding to punycode as necessary.
sourcepub fn from_ascii(s: &str) -> ProtoResult<Self>
pub fn from_ascii(s: &str) -> ProtoResult<Self>
Takes the ascii string and returns a new label.
This will return an Error if the label is not an ascii string
sourcepub fn to_lowercase(&self) -> Self
pub fn to_lowercase(&self) -> Self
Converts this label to lowercase
sourcepub fn is_wildcard(&self) -> bool
pub fn is_wildcard(&self) -> bool
Returns true if this label is the wildcard, ‘*’, label
sourcepub fn as_bytes(&self) -> &[u8] ⓘ
pub fn as_bytes(&self) -> &[u8] ⓘ
Returns the raw bytes of the label, this is good for writing to the wire.
See Display
for presentation version (unescaped from punycode, etc)
sourcepub fn eq_ignore_ascii_case(&self, other: &Self) -> bool
pub fn eq_ignore_ascii_case(&self, other: &Self) -> bool
Performs the equivalence operation disregarding case
sourcepub fn cmp_with_f<F: LabelCmp>(&self, other: &Self) -> Ordering
pub fn cmp_with_f<F: LabelCmp>(&self, other: &Self) -> Ordering
compares with the other label, ignoring case
sourcepub fn to_utf8(&self) -> String
pub fn to_utf8(&self) -> String
Performs the conversion to utf8 from IDNA as necessary, see fmt
for more details
Trait Implementations§
source§impl<'a> IntoLabel for &'a Label
impl<'a> IntoLabel for &'a Label
source§fn into_label(self) -> ProtoResult<Label>
fn into_label(self) -> ProtoResult<Label>
source§impl IntoLabel for Label
impl IntoLabel for Label
source§fn into_label(self) -> ProtoResult<Label>
fn into_label(self) -> ProtoResult<Label>
source§impl Ord for Label
impl Ord for Label
source§impl PartialEq for Label
impl PartialEq for Label
source§impl PartialOrd for Label
impl PartialOrd for Label
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 moreimpl Eq for Label
Auto Trait Implementations§
impl Freeze for Label
impl RefUnwindSafe for Label
impl Send for Label
impl Sync for Label
impl Unpin for Label
impl UnwindSafe for Label
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
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
)