pub trait ArrayIteratorIPC {
// Required methods
fn into_ipc(
self,
session: &VortexSession,
) -> VortexResult<ArrayIteratorIPCBytes>
where Self: Sized;
fn write_ipc<W: Write>(
self,
write: W,
session: &VortexSession,
) -> VortexResult<W>
where Self: Sized;
}Expand description
A trait for converting an ArrayIterator into an IPC stream.
Required Methods§
fn into_ipc(
self,
session: &VortexSession,
) -> VortexResult<ArrayIteratorIPCBytes>where
Self: Sized,
fn write_ipc<W: Write>(
self,
write: W,
session: &VortexSession,
) -> VortexResult<W>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".