Trait Market

Source
pub trait Market {
    // Required method
    fn to_string(&self) -> String;
}
Expand description

Market interface that ensures all market enums implement .to_string().

Required Methods§

Source

fn to_string(&self) -> String

Converts enum value to String.

Implementors§