pub async fn decode_read_rows_response(
    timeout: &Option<Duration>,
    rrr: Streaming<ReadRowsResponse>
) -> Result<Vec<(Vec<u8>, Vec<RowCell>)>, Error>
Expand description

As each CellChunk could be only part of a cell, this method reorganize multiple CellChunk from multiple ReadRowsResponse into a Vec<(RowKey, Vec<RowCell>)>.