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
58
59
60
61
62
63
64
65
use std::any::{Any, TypeId};
use downcast_rs::DowncastSync;
#[cfg(not(feature = "debug"))]
pub trait Resource: DowncastSync + 'static {
fn type_id(&self) -> TypeId;
fn type_name(&self) -> TypeNameLit;
}
#[cfg(not(feature = "debug"))]
impl<T> Resource for T
where
T: Any + Send + Sync,
{
fn type_id(&self) -> TypeId {
TypeId::of::<T>()
}
fn type_name(&self) -> TypeNameLit {
TypeNameLit(std::any::type_name::<T>())
}
}
#[cfg(feature = "debug")]
pub trait Resource: DowncastSync + std::fmt::Debug + 'static {
fn type_id(&self) -> TypeId;
fn type_name(&self) -> TypeNameLit;
}
#[cfg(feature = "debug")]
impl<T> Resource for T
where
T: Any + std::fmt::Debug + Send + Sync,
{
fn type_id(&self) -> TypeId {
TypeId::of::<T>()
}
fn type_name(&self) -> TypeNameLit {
TypeNameLit(std::any::type_name::<T>())
}
}
downcast_rs::impl_downcast!(sync Resource);
use std::fmt;
pub struct TypeNameLit(&'static str);
impl fmt::Debug for TypeNameLit {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}