pub trait LayoutStrategy:
'static
+ Send
+ Sync {
// Required method
fn write_stream(
&self,
ctx: &ArrayContext,
sequence_writer: SequenceWriter,
stream: SendableSequentialStream,
) -> SendableLayoutFuture;
}