pub trait EncodedBatchReaderExt {
// Required methods
fn try_from_mini_lance(bytes: Bytes, schema: &Schema) -> Result<Self>
where Self: Sized;
fn try_from_self_described_lance(bytes: Bytes) -> Result<Self>
where Self: Sized;
}Required Methods§
fn try_from_mini_lance(bytes: Bytes, schema: &Schema) -> Result<Self>where
Self: Sized,
fn try_from_self_described_lance(bytes: Bytes) -> Result<Self>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".