pub trait Market {
// Required method
fn to_string(&self) -> String;
}
Expand description
Market interface that ensures all market enums implement .to_string().
pub trait Market {
// Required method
fn to_string(&self) -> String;
}
Market interface that ensures all market enums implement .to_string().