Migrate chat to AsyncWidget

This commit is contained in:
Joscha 2023-04-13 21:12:29 +02:00
parent ecc4995397
commit f69d88bf4a
8 changed files with 1359 additions and 12 deletions

View file

@ -38,6 +38,8 @@ const EVENT_PROCESSING_TIME: Duration = Duration::from_millis(1000 / 15); // 15
/// Error for anything that can go wrong while rendering.
#[derive(Debug, thiserror::Error)]
pub enum UiError {
#[error("{0}")]
Vault(#[from] vault::tokio::Error),
#[error("{0}")]
Io(#[from] io::Error),
}