pub trait WriteableChunk: Send {
    type Data<'a>: From<&'a [u8]>;
}

Required Associated Types§

source

type Data<'a>: From<&'a [u8]>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl WriteableChunk for U8

§

type Data<'b> = &'b [u8]