🚨 Fix some clippy warnings

This commit is contained in:
2024-05-26 11:53:47 +02:00
parent 62015f8d13
commit 89473cfd61
6 changed files with 11 additions and 0 deletions

View File

@@ -28,7 +28,10 @@ pub trait RoomStoreConsumerInterface {
fn id(&self) -> &RoomId;
fn is_direct(&self) -> Option<bool>;
fn name(&self) -> Option<String>;
#[allow(dead_code)]
async fn avatar(&self) -> Option<Avatar>;
fn spaces(&self) -> &Vec<SpaceId>;
}