pub trait FormatContext {
type Options: FormatOptions;
// Required method
fn options(&self) -> &Self::Options;
// Provided method
fn source_length_hint(&self) -> usize { ... }
}pub trait FormatContext {
type Options: FormatOptions;
// Required method
fn options(&self) -> &Self::Options;
// Provided method
fn source_length_hint(&self) -> usize { ... }
}