pub struct WorkspaceManifest {
pub name: String,
pub store_path: String,
pub repos: Vec<WorkspaceRepo>,
}Expand description
Workspace configuration stored in .aida-workspace.
Fields§
§name: StringHuman-readable workspace name
store_path: StringPath to the shared AIDA store (relative to workspace root)
repos: Vec<WorkspaceRepo>Code repos in this workspace
Implementations§
Trait Implementations§
Source§impl Clone for WorkspaceManifest
impl Clone for WorkspaceManifest
Source§fn clone(&self) -> WorkspaceManifest
fn clone(&self) -> WorkspaceManifest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WorkspaceManifest
impl Debug for WorkspaceManifest
Source§impl Default for WorkspaceManifest
impl Default for WorkspaceManifest
Source§impl<'de> Deserialize<'de> for WorkspaceManifest
impl<'de> Deserialize<'de> for WorkspaceManifest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WorkspaceManifest
impl RefUnwindSafe for WorkspaceManifest
impl Send for WorkspaceManifest
impl Sync for WorkspaceManifest
impl Unpin for WorkspaceManifest
impl UnsafeUnpin for WorkspaceManifest
impl UnwindSafe for WorkspaceManifest
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