risingwave_common::hash

Trait HashKeyDe

source
pub trait HashKeyDe: Scalar {
    // Required method
    fn deserialize(data_type: &DataType, buf: impl Buf) -> Self;
}
Expand description

The deserialization counterpart of HashKeySer.

Required Methods§

source

fn deserialize(data_type: &DataType, buf: impl Buf) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl HashKeyDe for bool

source§

fn deserialize(_data_type: &DataType, buf: impl Buf) -> Self

source§

impl HashKeyDe for i16

source§

fn deserialize(_data_type: &DataType, buf: impl Buf) -> Self

source§

impl HashKeyDe for i32

source§

fn deserialize(_data_type: &DataType, buf: impl Buf) -> Self

source§

impl HashKeyDe for i64

source§

fn deserialize(_data_type: &DataType, buf: impl Buf) -> Self

source§

impl HashKeyDe for Box<str>

source§

fn deserialize(data_type: &DataType, buf: impl Buf) -> Self

source§

impl HashKeyDe for Box<[u8]>

source§

fn deserialize(data_type: &DataType, buf: impl Buf) -> Self

Implementors§