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
use crate::error::{Error, Result};
#[derive(Debug, Clone)]
pub enum Method {
ConnectPeerViaHttp,
ConnectPeerViaIce,
ListPeers,
CreateOffer,
SendTo,
Disconnect,
AcceptAnswer,
ListPendings,
ClosePendingTransport,
}
impl Method {
pub fn as_str(&self) -> &str {
match self {
Method::ConnectPeerViaHttp => "connectPeerViaHttp",
Method::ConnectPeerViaIce => "connectPeerViaIce",
Method::ListPeers => "listPeers",
Method::CreateOffer => "createOffer",
Method::SendTo => "sendTo",
Method::Disconnect => "disconnect",
Method::AcceptAnswer => "acceptAnswer",
Method::ListPendings => "listPendings",
Method::ClosePendingTransport => "closePendingTransport",
}
}
}
impl ToString for Method {
fn to_string(&self) -> String {
self.as_str().to_owned()
}
}
impl TryFrom<&str> for Method {
type Error = crate::error::Error;
fn try_from(value: &str) -> Result<Self> {
Ok(match value {
"connectPeerViaHttp" => Self::ConnectPeerViaHttp,
"connectPeerViaIce" => Self::ConnectPeerViaIce,
"listPeers" => Self::ListPeers,
"createOffer" => Self::CreateOffer,
"sendTo" => Self::SendTo,
"disconnect" => Self::Disconnect,
"acceptAnswer" => Self::AcceptAnswer,
"listPendings" => Self::ListPendings,
"closePendingTransport" => Self::ClosePendingTransport,
_ => return Err(Error::InvalidMethod),
})
}
}