Skip to main content

HashKeyDe

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl HashKeyDe for Box<[u8]>

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 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

Implementors§