bh
Size: a a a
bh
G
G
G

D
G
G
my_module = "project.root.entities.calculations"__import__(my_module).resolve.answer(123)
D
VL
rustuse std::any::TypeId;
pub trait BTrait {
fn event_type_id(&self) -> TypeId;
}
struct B {
type_id: TypeId,
}
impl B {
pub fn new() -> B {
B {
type_id: TypeId::of::<Self>(),
}
}
}
impl BTrait for B {
fn event_type_id(&self) -> TypeId {
self.type_id
}
}
VL
G
VL
VL
D
VL
VL
G
VL