pub trait IsSynchronousOption {
// Required method
fn is_synchronous(&self) -> bool;
// Provided method
fn add_header(&self, builder: Builder) -> Builder { ... }
}
pub trait IsSynchronousOption {
// Required method
fn is_synchronous(&self) -> bool;
// Provided method
fn add_header(&self, builder: Builder) -> Builder { ... }
}