pub trait RowSink<S>where
S: Sample,{
type Error: Error + Send + Sync + 'static;
// Required method
fn write_row(&mut self, y: u32, row: &[S]) -> Result<(), Self::Error>;
}Expand description
Destination for row-streaming decode output.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".