pub trait ImageLocation: Display {
// Required method
fn sources(&self) -> Result<Vec<ImageSource>>;
// Provided method
fn require_signature(&self) -> bool { ... }
}pub trait ImageLocation: Display {
// Required method
fn sources(&self) -> Result<Vec<ImageSource>>;
// Provided method
fn require_signature(&self) -> bool { ... }
}