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 from: Vec<Arc<User>>, 7 pub room_id: u64, 8}