Struct trust_dns_proto::rr::domain::Label
source · pub struct Label(_);
Expand description
Labels are always stored as ASCII, unicode characters must be encoded with punycode
Implementations
sourceimpl 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 equivelence 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
sourceimpl<'a> IntoLabel for &'a Label
impl<'a> IntoLabel for &'a Label
sourcefn into_label(self) -> ProtoResult<Label>
fn into_label(self) -> ProtoResult<Label>
sourceimpl IntoLabel for Label
impl IntoLabel for Label
sourcefn into_label(self) -> ProtoResult<Label>
fn into_label(self) -> ProtoResult<Label>
sourceimpl Ord for Label
impl Ord for Label
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
sourceimpl PartialOrd<Label> for Label
impl PartialOrd<Label> for Label
sourcefn partial_cmp(&self, other: &Label) -> Option<Ordering>
fn partial_cmp(&self, other: &Label) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more