Struct trust_dns_proto::rr::domain::Label [−][src]
pub struct Label(_);
Labels are always stored as ASCII, unicode characters must be encoded with punycode
Methods
impl Label[src]
impl Labelpub fn from_raw_bytes(bytes: &[u8]) -> ProtoResult<Self>[src]
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
pub fn from_utf8(s: &str) -> ProtoResult<Self>[src]
pub fn from_utf8(s: &str) -> ProtoResult<Self>Translates this string into IDNA safe name, encoding to punycode as necessary.
pub fn from_ascii(s: &str) -> ProtoResult<Self>[src]
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
pub fn to_lowercase(&self) -> Self[src]
pub fn to_lowercase(&self) -> SelfConverts this label to lowercase
pub fn is_wildcard(&self) -> bool[src]
pub fn is_wildcard(&self) -> boolReturns true if this label is the wildcard, '*', label
pub fn len(&self) -> usize[src]
pub fn len(&self) -> usizeReturns the lenght in bytes of this label
pub fn as_bytes(&self) -> &[u8][src]
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)
pub fn eq_ignore_ascii_case(&self, other: &Self) -> bool[src]
pub fn eq_ignore_ascii_case(&self, other: &Self) -> boolPerforms the equivelence operation disregarding case
pub fn cmp_with_f<F: LabelCmp>(&self, other: &Self) -> Ordering[src]
pub fn cmp_with_f<F: LabelCmp>(&self, other: &Self) -> Orderingcompares with the other label, ignoring case
pub fn to_utf8(&self) -> String[src]
pub fn to_utf8(&self) -> StringPerforms the conversion to utf8 from IDNA as necessary, see fmt for more details
pub fn to_ascii(&self) -> String[src]
pub fn to_ascii(&self) -> StringConverts this label to safe ascii, escaping characters as necessary
If this is an IDNA, punycode, label, then the xn-- prefix will be maintained as ascii
pub fn write_ascii<W: Write>(&self, f: &mut W) -> Result<(), Error>[src]
pub fn write_ascii<W: Write>(&self, f: &mut W) -> Result<(), Error>Writes this label to safe ascii, escaping characters as necessary
Trait Implementations
impl Clone for Label[src]
impl Clone for Labelfn clone(&self) -> Label[src]
fn clone(&self) -> LabelReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Eq for Label[src]
impl Eq for Labelimpl AsRef<[u8]> for Label[src]
impl AsRef<[u8]> for Labelimpl Borrow<[u8]> for Label[src]
impl Borrow<[u8]> for Labelimpl Display for Label[src]
impl Display for Labelfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>outputs characters in a safe string manner.
if the string is punycode, i.e. starts with xn--, otherwise it translates to a safe ascii string
escaping characters as necessary.
impl Debug for Label[src]
impl Debug for Labelfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl PartialEq<Label> for Label[src]
impl PartialEq<Label> for Labelfn eq(&self, other: &Self) -> bool[src]
fn eq(&self, other: &Self) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl PartialOrd<Label> for Label[src]
impl PartialOrd<Label> for Labelfn partial_cmp(&self, other: &Label) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Label) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for Label[src]
impl Ord for Labelfn cmp(&self, other: &Self) -> Ordering[src]
fn cmp(&self, other: &Self) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for Label[src]
impl Hash for Labelfn hash<H>(&self, state: &mut H) where
H: Hasher, [src]
fn hash<H>(&self, state: &mut H) where
H: Hasher, Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl<'a> IntoLabel for &'a Label[src]
impl<'a> IntoLabel for &'a Labelfn into_label(self) -> ProtoResult<Label>[src]
fn into_label(self) -> ProtoResult<Label>Convert this into Label
impl IntoLabel for Label[src]
impl IntoLabel for Labelfn into_label(self) -> ProtoResult<Label>[src]
fn into_label(self) -> ProtoResult<Label>Convert this into Label