pub trait Attribute {
    type Dialect: for<'de> Deserialize<'de> + Dialect;
    type Output;

    fn extract(dialect: Option<Result<Self::Dialect, Error>>) -> Self::Output;
}
Expand description

A specific attribute of a dialected section.

Required Associated Types

Required Methods

Implementors