pub trait Mutable {
// Required method
fn is_mutable(&self) -> bool;
// Provided method
fn is_immutable(&self) -> bool { ... }
}
pub trait Mutable {
// Required method
fn is_mutable(&self) -> bool;
// Provided method
fn is_immutable(&self) -> bool { ... }
}