pub trait FileType:
GetExt
+ Display
+ Send
+ Sync {
// Required method
fn as_any(&self) -> &(dyn Any + 'static);
}
Expand description
Defines the functionality needed for logical planning for a type of file which will be read or written to storage.