pub trait DataFrameTimeBounds:
Send
+ Sync
+ Debug {
// Required method
fn get_time_bounds<'life0, 'async_trait>(
&'life0 self,
df: DataFrame,
) -> Pin<Box<dyn Future<Output = Result<TimeRange, Error>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}