|
@@ -24,7 +24,7 @@ pub trait DefaultService: Default {
|
|
|
}
|
|
|
|
|
|
impl<T: 'static + DefaultService> Service for T {
|
|
|
- fn new(api: Rc<crate::API>) -> Self {
|
|
|
+ fn new(_api: Rc<crate::API>) -> Self {
|
|
|
Self::default()
|
|
|
}
|
|
|
fn setup(self: &Rc<Self>) {}
|
|
@@ -34,7 +34,6 @@ impl<T: 'static + DefaultService> Service for T {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-
|
|
|
#[derive(Default)]
|
|
|
pub struct ServiceStack {
|
|
|
service_map: RefCell<HashMap<TypeId, Rc<dyn std::any::Any>>>,
|
|
@@ -71,10 +70,10 @@ impl ServiceStack {
|
|
|
let svc = {
|
|
|
let svcs = self.service_map.borrow();
|
|
|
svcs.get(&id)
|
|
|
- .expect("asked for service that doesn't exist!")
|
|
|
- .downcast_ref::<Rc<S>>()
|
|
|
- .unwrap()
|
|
|
+ .unwrap_or_else(|| panic!("asked for service {} that doesn't exist!", std::any::type_name::<S>()))
|
|
|
.clone()
|
|
|
+ .downcast::<S>()
|
|
|
+ .expect("internal inconsistency: wanted Rc<Service> but that wasn't what was in the map")
|
|
|
};
|
|
|
|
|
|
f(svc.as_ref())
|