pub trait Iden{
// Required method
fn unquoted(&self, s: &mut dyn Write);
// Provided methods
fn prepare(&self, s: &mut dyn Write, q: Quote) { ... }
fn quoted(&self, q: Quote) -> String { ... }
fn to_string(&self) -> String { ... }
}
Expand description
Identifier