pub trait Dialect {
    fn key() -> &'static str;
    fn section() -> Section;
}
Expand description

A “dialect”, of strongly typed main section.

Required Methods

The name of the field inside the section.

The section.

Implementors