pub async fn write_rows_with<S, T>(
sink: &S,
transformer: Arc<T>,
rows: Vec<Row>,
opts: &ApplyOpts,
) -> Result<()>where
S: SurrealSink,
T: BatchTransformer + 'static,Expand description
Like write_rows but accepts any BatchTransformer behind Arc.