pub trait GenericBundle {
// Required method
fn is_batch(&self) -> bool;
// Provided methods
fn try_as_batch(&self) -> Option<&CollectionBundle<Batch>> { ... }
fn try_as_row(&self) -> Option<&CollectionBundle<(Row, i64, i64)>> { ... }
}