Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use crate::User; 2use std::sync::Arc; 3 4#[derive(Clone)] 5pub struct Call { 6 pub room_id: u64, 7 pub from: Arc<User>, 8 pub participants: Vec<Arc<User>>, 9}