[][src]Trait uwl::Advancer

pub trait Advancer: Sealed { }

How the stream should be constitualizing "chars" and how many bytes should it advance per "char".

There is Ascii, which only advances the stream by one byte. Then there's the Unicode advancer that not only handles ASCII, but any utf-8 encoded character.

This trait is sealed. Outside the crate no type may implement this trait.

Implementors

impl Advancer for Ascii[src]

impl Advancer for Unicode[src]

Loading content...