pub trait DynamicLargeFileLoadStrategy: Debug {
// Required method
fn get_load_strategy(&self, file_size: u64) -> ConstantLargeFileLoadStrategy;
}Expand description
A dynamic file load strategy, refer to ConstantLargeFileLoadStrategy to find how they work.