pub trait QuotedBuilder {
    // Required method
    fn quote(&self) -> char;
}

Required Methods§

fn quote(&self) -> char

The type of quote the builder uses.

Implementors§