Trait smart_read::IterBytes

source ·
pub trait IterBytes {
    // Required method
    fn iter_bytes(&self) -> impl Iterator<Item = BoxResult<u8>>;
}

Required Methods§

source

fn iter_bytes(&self) -> impl Iterator<Item = BoxResult<u8>>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: AsRef<str>> IterBytes for T