trait VarSizedValueReader {
type AB: ArrayBuilder;
// Required methods
fn new_builder(capacity: usize) -> Self::AB;
fn read(buf: &[u8], builder: &mut Self::AB) -> ArrayResult<()>;
}
Required Associated Types§
type AB: ArrayBuilder
Required Methods§
fn new_builder(capacity: usize) -> Self::AB
fn read(buf: &[u8], builder: &mut Self::AB) -> ArrayResult<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.