[][src]Struct langtag::Extensions

pub struct Extensions<T: ?Sized = [u8]> { /* fields omitted */ }

List of extensions.

A list of language tag extension, separated by a - character. Individual extensions are represented by the Extension type, while extension subtags are represented by the ExtensionSubtag type.

Implementations

impl<T: AsRef<[u8]>> Extensions<T>[src]

pub fn new(t: T) -> Result<Extensions<T>, Error>[src]

Parse and use the given data.

pub unsafe fn new_unchecked(t: T) -> Extensions<T>[src]

Use the given data as buffer without parsing it.

Safety

The given data must be syntactically correct.

impl Extensions<[u8]>[src]

pub fn parse<'a, T: AsRef<[u8]> + ?Sized>(
    bytes: &'a T
) -> Result<&'a Extensions<[u8]>, Error>
[src]

Parse and borrow the given data.

pub unsafe fn parse_unchecked<'a, T: AsRef<[u8]> + ?Sized>(
    bytes: &'a T
) -> &'a Extensions<[u8]>
[src]

Borrow the given data without checking that it is syntactically correct.

Safety

The data must be syntactically correct.

impl Extensions<Vec<u8>>[src]

pub fn parse_copy<'a, T: AsRef<[u8]> + ?Sized>(
    bytes: &'a T
) -> Result<Extensions<Vec<u8>>, Error>
[src]

Parse and copy the input data.

pub unsafe fn parse_copy_unchecked<'a, T: AsRef<[u8]> + ?Sized>(
    bytes: &'a T
) -> Extensions<Vec<u8>>
[src]

Copy the input data without checking its syntax correctness.

Safety

The input data must be syntactically correct.

impl<T: AsRef<[u8]> + ?Sized> Extensions<T>[src]

pub fn len(&self) -> usize[src]

Bytes length.

pub fn as_bytes(&self) -> &[u8][src]

Return a reference to the underlying data.

pub fn as_str(&self) -> &str[src]

Return a reference to the underlying data as a string.

impl Extensions[src]

pub fn empty() -> &'static Extensions[src]

The empty list of extension (an empty string).

pub fn iter(&self) -> ExtensionsIter<'_>

Notable traits for ExtensionsIter<'a>

impl<'a> Iterator for ExtensionsIter<'a> type Item = &'a Extension;
[src]

Iterate extensions.

pub fn iter_subtags(&self) -> ExtensionsSubtagsIter<'_>

Notable traits for ExtensionsSubtagsIter<'a>

impl<'a> Iterator for ExtensionsSubtagsIter<'a> type Item = (Singleton, &'a ExtensionSubtag);
[src]

Iterate through each extensions subtags.

Eah subtag will be attached to its extension's singleton.

pub fn iter_extension(&self, e: Singleton) -> ExtensionSubtagsIter<'_>

Notable traits for ExtensionSubtagsIter<'a>

impl<'a> Iterator for ExtensionSubtagsIter<'a> type Item = &'a ExtensionSubtag;
[src]

Iterate through a specific extension subtags.

Trait Implementations

impl<T: AsRef<[u8]> + ?Sized> AsRef<[u8]> for Extensions<T>[src]

impl<T: AsRef<[u8]> + ?Sized> AsRef<str> for Extensions<T>[src]

impl<T: AsRef<[u8]> + ?Sized> Debug for Extensions<T>[src]

impl<T: ?Sized> Deref for Extensions<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: AsRef<[u8]> + ?Sized> Display for Extensions<T>[src]

impl<T: AsRef<[u8]> + ?Sized> Eq for Extensions<T>[src]

impl<T: AsRef<[u8]> + ?Sized> Hash for Extensions<T>[src]

impl<'a> IntoIterator for &'a Extensions[src]

type IntoIter = ExtensionsIter<'a>

Which kind of iterator are we turning this into?

type Item = &'a Extension

The type of the elements being iterated over.

impl<T: AsRef<[u8]> + ?Sized> Ord for Extensions<T>[src]

impl<T: AsRef<[u8]> + ?Sized> PartialEq<[u8]> for Extensions<T>[src]

impl<T: AsRef<[u8]> + ?Sized> PartialEq<Extensions<T>> for [u8][src]

impl<T: AsRef<[u8]> + ?Sized> PartialEq<Extensions<T>> for str[src]

impl<T: AsRef<[u8]> + ?Sized, U: AsRef<[u8]> + ?Sized> PartialEq<Extensions<U>> for Extensions<T>[src]

impl<T: AsRef<[u8]> + ?Sized> PartialEq<str> for Extensions<T>[src]

impl<T: AsRef<[u8]> + ?Sized, U: AsRef<[u8]> + ?Sized> PartialOrd<Extensions<U>> for Extensions<T>[src]

impl<'a> TryFrom<&'a [u8]> for &'a Extensions<[u8]>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'a> TryFrom<&'a str> for &'a Extensions<[u8]>[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<T: ?Sized> RefUnwindSafe for Extensions<T> where
    T: RefUnwindSafe
[src]

impl<T: ?Sized> Send for Extensions<T> where
    T: Send
[src]

impl<T: ?Sized> Sync for Extensions<T> where
    T: Sync
[src]

impl<T: ?Sized> Unpin for Extensions<T> where
    T: Unpin
[src]

impl<T: ?Sized> UnwindSafe for Extensions<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.