zed/crates/room/src/participant.rs

20 lines
340 B
Rust
Raw Normal View History

2022-09-19 16:01:34 +00:00
use client::User;
2022-09-22 15:08:36 +00:00
use gpui::ModelHandle;
2022-09-19 16:01:34 +00:00
use project::Project;
2022-09-22 15:08:36 +00:00
pub enum Location {
Project { project_id: usize },
External,
}
2022-09-19 16:01:34 +00:00
pub struct LocalParticipant {
user: User,
2022-09-22 15:08:36 +00:00
projects: Vec<ModelHandle<Project>>,
2022-09-19 16:01:34 +00:00
}
pub struct RemoteParticipant {
user: User,
2022-09-22 15:08:36 +00:00
projects: Vec<ModelHandle<Project>>,
location: Location,
2022-09-19 16:01:34 +00:00
}