1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
use cxmr_currency::CurrencyPair;
use super::Error;
#[derive(Clone)]
pub enum Subscription {
Pairs(Vec<CurrencyPair>),
User(String),
}
pub trait Parser<I>: Sized {
fn parse(&mut self, msg: &str) -> Result<Option<I>, Error>;
}
pub trait Protocol<I>: Sized + 'static {
type Parser: Parser<I>;
fn subscription(sub: &Subscription) -> Option<(Command, Self::Parser)>;
}
pub enum Command {
Connect(String),
Commands(String, Vec<String>),
}
impl Command {
pub fn address(&self) -> &str {
match self {
Command::Connect(ref address) => address,
Command::Commands(ref address, _) => address,
}
}
pub fn commands(&self) -> Option<&Vec<String>> {
match self {
Command::Connect(_) => None,
Command::Commands(_, ref cmd) => Some(cmd),
}
}
}