Trait svisual::WriteIter[][src]

pub trait WriteIter {
    type Error;
    fn bwrite_iter<WI>(&mut self, bytes: WI) -> Result<(), Self::Error>
    where
        WI: Iterator<Item = u8>
;
fn bflush(&mut self) -> Result<(), Self::Error>; }
Expand description

Write iterator

Associated Types

Error type

Required methods

Blocking write of iterator

Blocking flush

Implementors