Trait tendril::fmt::CharFormat
source · pub unsafe trait CharFormat<'a>: Format {
type Iter: Iterator<Item = (usize, char)>;
// Required methods
unsafe fn char_indices(buf: &'a [u8]) -> Self::Iter;
fn encode_char<F>(ch: char, cont: F) -> Result<(), ()>
where F: FnOnce(&[u8]);
}
Expand description
Indicates a format which contains characters from Unicode (all of it, or some proper subset).
Required Associated Types§
Required Methods§
sourceunsafe fn char_indices(buf: &'a [u8]) -> Self::Iter
unsafe fn char_indices(buf: &'a [u8]) -> Self::Iter
Iterate over the characters of the string and their byte indices.
You may assume the buffer is already validated for Format
.
Object Safety§
This trait is not object safe.