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(Serialize, Deserialize)] 4pub struct CreateWorktreeResponse { 5 pub worktree_id: i32, 6 pub rpc_address: String, 7}