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
use std::ops::Deref;
use crate::{room::Common, BaseRoom, Client, Result, RoomType};
#[derive(Debug, Clone)]
pub struct Invited {
pub(crate) inner: Common,
}
impl Invited {
pub fn new(client: Client, room: BaseRoom) -> Option<Self> {
if room.room_type() == RoomType::Invited {
Some(Self { inner: Common::new(client, room) })
} else {
None
}
}
pub async fn reject_invitation(&self) -> Result<()> {
self.inner.leave().await
}
pub async fn accept_invitation(&self) -> Result<()> {
self.inner.join().await
}
}
impl Deref for Invited {
type Target = Common;
fn deref(&self) -> &Self::Target {
&self.inner
}
}