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§
Sourcefn into_arc(self) -> Arc<dyn LayoutReader>where
    Self: Sized + 'static,
 
fn into_arc(self) -> Arc<dyn LayoutReader>where
    Self: Sized + 'static,
Box the layout scan.