pub trait FnMapping<T> {
    // Required method
    fn to_mapping(self) -> Vec<(String, T)>;
}

Required Methods§

source

fn to_mapping(self) -> Vec<(String, T)>

Implementors§