pub struct Workspace {
pub id: String,
pub name: String,
pub contexts: Vec<CodebaseContext>,
pub created_at: u64,
}Expand description
A named collection of codebase contexts that can be queried together.
Fields§
§id: StringUnique workspace identifier (e.g., "ws-1").
name: StringHuman-readable name.
contexts: Vec<CodebaseContext>Codebase contexts in this workspace.
created_at: u64Creation timestamp (Unix epoch microseconds).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Workspace
impl RefUnwindSafe for Workspace
impl Send for Workspace
impl Sync for Workspace
impl Unpin for Workspace
impl UnsafeUnpin for Workspace
impl UnwindSafe for Workspace
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more