pub trait CompressedDataChunk {
    const KEY: &'static str;

    // Provided method
    fn event_stream(&self) -> CompressedDataEventStream
       where Self: AnchorSerialize + CompressedSchema { ... }
}

Required Associated Constants§

source

const KEY: &'static str

Provided Methods§

source

fn event_stream(&self) -> CompressedDataEventStream
where Self: AnchorSerialize + CompressedSchema,

Object Safety§

This trait is not object safe.

Implementors§