ArrayIteratorIPC

Trait ArrayIteratorIPC 

Source
pub trait ArrayIteratorIPC {
    // Required methods
    fn into_ipc(self) -> ArrayIteratorIPCBytes 
       where Self: Sized;
    fn write_ipc<W>(self, write: W) -> Result<W, VortexError>
       where W: Write,
             Self: Sized;
}
Expand description

A trait for converting an ArrayIterator into an IPC stream.

Required Methods§

Source

fn into_ipc(self) -> ArrayIteratorIPCBytes
where Self: Sized,

Source

fn write_ipc<W>(self, write: W) -> Result<W, VortexError>
where W: Write, Self: Sized,

Implementors§

Source§

impl<I> ArrayIteratorIPC for I
where I: ArrayIterator + 'static,