risingwave_common::util::value_encoding

Trait ValueRowSerializer

source
pub trait ValueRowSerializer: Clone {
    // Required method
    fn serialize(&self, row: impl Row) -> Vec<u8> ;
}
Expand description

Part of ValueRowSerde that implements serialize a Row into bytes

Required Methods§

source

fn serialize(&self, row: impl Row) -> Vec<u8>

Object Safety§

This trait is not object safe.

Implementors§