Fix errors preventing compilation

This commit is contained in:
Joscha 2022-06-13 16:43:28 +02:00
parent fb7e504f2c
commit 6fdce9db1e
5 changed files with 156 additions and 30 deletions

View file

@ -84,6 +84,6 @@ impl<M: Msg> Tree<M> {
#[async_trait]
pub trait MsgStore<M: Msg> {
async fn path(&self, room: &str, id: M::Id) -> Path<M::Id>;
async fn thread(&self, room: &str, root: M::Id) -> Tree<M>;
async fn path(&self, room: &str, id: &M::Id) -> Path<M::Id>;
async fn thread(&self, room: &str, root: &M::Id) -> Tree<M>;
}