Added some better theming to the UI, enabled clippy to warn on 2018 idioms, and added human_panic hook to report bugs

This commit is contained in:
2023-08-08 10:50:05 -06:00
parent 652dc0f2c4
commit f92042fb21
6 changed files with 141 additions and 57 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ impl<'a> Network<'a> {
pub async fn handle_request<T, R>(
&self,
request_props: RequestProps<T>,
mut app_update_fn: impl FnMut(R, MutexGuard<App>),
mut app_update_fn: impl FnMut(R, MutexGuard<'_, App>),
) where
T: Serialize + Default + Debug,
R: DeserializeOwned,