Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use serde::{Deserialize, Serialize}; 2 3#[derive(Clone, Debug, Deserialize, Serialize)] 4pub struct User { 5 pub login: String, 6 pub avatar_url: String, 7}