pub trait ProviderSettings {
// Required methods
fn api_key(&self) -> &str;
fn api_url(&self) -> &str;
// Provided method
fn is_configured(&self) -> bool { ... }
}
pub trait ProviderSettings {
// Required methods
fn api_key(&self) -> &str;
fn api_url(&self) -> &str;
// Provided method
fn is_configured(&self) -> bool { ... }
}