pub trait FileIoInterface {
// Required method
fn id(&self) -> Id;
// Provided method
fn file_extensions(&self) -> Vec<Id> ⓘ { ... }
}Expand description
The FileIoInterface defines an interface for file import and export.
Required Methods§
Provided Methods§
Sourcefn file_extensions(&self) -> Vec<Id> ⓘ
fn file_extensions(&self) -> Vec<Id> ⓘ
Return file extensions this IO interface supports.