Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use crate::db::UserId; 2 3#[derive(Debug, Clone)] 4pub struct User { 5 pub id: UserId, 6 pub github_login: String, 7 pub admin: bool, 8 pub connected_once: bool, 9}