Trait Mapper

Source
pub trait Mapper: Send + Sync {
    // Required methods
    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§

Source

fn exl(&self) -> String

Fetch the path to the excel list file.

Source

fn exh(&self, sheet: &str) -> String

Fetch the path to a sheet header file.

Source

fn exd(&self, sheet: &str, start_id: u32, language_id: u8) -> String

Fetch the path to a sheet page file.

Implementors§

Source§

impl Mapper for Mapper

Available on crate feature ffxiv only.