Trait LayoutReaderExt

Source
pub trait LayoutReaderExt: LayoutReader {
    // Provided methods
    fn into_arc(self) -> Arc<dyn LayoutReader>
       where Self: Sized + 'static { ... }
    fn row_count(&self) -> u64 { ... }
    fn dtype(&self) -> &DType { ... }
}

Provided Methods§

Source

fn into_arc(self) -> Arc<dyn LayoutReader>
where Self: Sized + 'static,

Box the layout scan.

Source

fn row_count(&self) -> u64

Returns the row count of the layout.

Source

fn dtype(&self) -> &DType

Returns the DType of the layout.

Implementors§