pub trait Mapper: Send + Sync {
    fn exl(&self) -> String;
    fn exh(&self, sheet: &str) -> String;
    fn exd(&self, sheet: &str, start_id: u32, language_id: u8) -> String;
}
Available on crate feature excel only.
Expand description

Mapper to fetch file paths for excel lookups.

Required Methods

Fetch the path to the excel list file.

Fetch the path to a sheet header file.

Fetch the path to a sheet page file.

Implementors