4 lines
75 B
Rust
4 lines
75 B
Rust
|
|
pub trait Data {
|
||
|
|
fn exists(&self, room_id: &RoomId) -> Result<bool>;
|
||
|
|
}
|