[][src]Trait tendril::fmt::CharFormat

pub unsafe trait CharFormat<'a>: Format {
    type Iter: Iterator<Item = (usize, char)>;
    pub unsafe fn char_indices(buf: &'a [u8]) -> Self::Iter;
pub fn encode_char<F>(ch: char, cont: F) -> Result<(), ()>
    where
        F: FnOnce(&[u8])
; }

Indicates a format which contains characters from Unicode (all of it, or some proper subset).

Associated Types

type Iter: Iterator<Item = (usize, char)>[src]

Iterator for characters and their byte indices.

Loading content...

Required methods

pub unsafe fn char_indices(buf: &'a [u8]) -> Self::Iter[src]

Iterate over the characters of the string and their byte indices.

You may assume the buffer is already validated for Format.

pub fn encode_char<F>(ch: char, cont: F) -> Result<(), ()> where
    F: FnOnce(&[u8]), 
[src]

Encode the character as bytes and pass them to a continuation.

Returns Err(()) iff the character cannot be represented.

Loading content...

Implementors

impl<'a> CharFormat<'a> for ASCII[src]

type Iter = SingleByteCharIndices<'a>

impl<'a> CharFormat<'a> for Latin1[src]

type Iter = SingleByteCharIndices<'a>

impl<'a> CharFormat<'a> for UTF8[src]

type Iter = CharIndices<'a>

Loading content...