FileType

Trait FileType 

Source
pub trait FileType:
    GetExt
    + Display
    + Send
    + Sync {
    // Required method
    fn as_any(&self) -> &dyn Any;
}
Expand description

Defines the functionality needed for logical planning for a type of file which will be read or written to storage.

Required Methods§

Source

fn as_any(&self) -> &dyn Any

Returns the table source as Any so that it can be downcast to a specific implementation.

Implementors§