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
mod display;
mod event_queue;
mod proxy;
pub(crate) use self::display::DisplayInner;
pub(crate) use self::event_queue::EventQueueInner;
pub(crate) use self::proxy::ProxyInner;
use crate::{Interface, Main, Proxy};
pub enum ProxyMap {}
impl ProxyMap {
pub fn get<I: Interface>(&mut self, _: u32) -> Option<Proxy<I>> {
match *self {}
}
pub fn get_or_dead<I: Interface>(&mut self, _: u32) -> Proxy<I> {
match *self {}
}
pub fn get_new<I: Interface + AsRef<Proxy<I>> + From<Proxy<I>>>(
&mut self,
_: u32,
) -> Option<Main<I>> {
match *self {}
}
}