[][src]Struct rut::Utf8Parser

pub struct Utf8Parser { /* fields omitted */ }

Methods

impl Utf8Parser[src]

pub fn new() -> Utf8Parser[src]

Crates a new parser.

pub fn parse_byte(&mut self, byte: u8) -> Result<Option<char>, Utf8ParserError>[src]

Tries to parse an UTF-8 byte. Returns Ok(Some(char)) if a full character was parsed, Ok(None) if the byte was parsed but no full character yet, and Err(Utf8ParserError) otherwise.

Trait Implementations

impl Clone for Utf8Parser[src]

impl Default for Utf8Parser[src]

Auto Trait Implementations

impl Unpin for Utf8Parser

impl Send for Utf8Parser

impl Sync for Utf8Parser

Blanket Implementations

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

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

type Error = !

The type returned in the event of a conversion error.

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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