zed/crates/room/src/participant.rs

16 lines
322 B
Rust
Raw Normal View History

2022-09-19 16:01:34 +00:00
use client::User;
use gpui::{ModelHandle, ViewHandle};
use project::Project;
use workspace::Workspace;
pub struct LocalParticipant {
user: User,
workspaces: Vec<ViewHandle<Workspace>>,
}
pub struct RemoteParticipant {
user: User,
workspaces: Vec<ViewHandle<Workspace>>,
active_workspace_id: usize,
}