pub trait UsageSource {
// Required methods
fn name(&self) -> &'static str;
fn try_fetch(&self) -> Result<ApiResponse, SourceError>;
}pub trait UsageSource {
// Required methods
fn name(&self) -> &'static str;
fn try_fetch(&self) -> Result<ApiResponse, SourceError>;
}