pub trait LayoutReader:
'static
+ Send
+ Sync
+ ExprEvaluator {
// Required method
fn layout(&self) -> &Layout;
}Expand description
A LayoutReader is an instance of a Layout that can cache state across multiple
operations.
Since different row ranges of the reader may be evaluated by different threads, it is required
to be both Send and Sync.