[][src]Struct en_300_468_reader::Text

pub struct Text<'buf> { /* fields omitted */ }

A wrapper around bytes representing text having embedded encoding information, with functionality for trying to decode this a Rust String.

Methods

impl<'buf> Text<'buf>[src]

pub fn new(data: &'buf [u8]) -> Result<Text<'buf>, TextError>[src]

pub fn encoding(&self) -> TextEncoding[src]

pub fn to_string(&self, trap: DecoderTrap) -> Result<String, TextError>[src]

Trait Implementations

impl<'buf> Debug for Text<'buf>[src]

Auto Trait Implementations

impl<'buf> Send for Text<'buf>

impl<'buf> Unpin for Text<'buf>

impl<'buf> Sync for Text<'buf>

impl<'buf> UnwindSafe for Text<'buf>

impl<'buf> RefUnwindSafe for Text<'buf>

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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

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

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