pub trait AsciiIteratorExt{
// Provided method
fn ascii<'b>(self) -> Decoder<'b, Self> ⓘ { ... }
}
Expand description
Extension trait for iterators of bytes and adds the helper function
IteratorExt::ascii
for decoding as ASCII strings.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.