pub struct WorkspaceManifest {
pub schema_version: u8,
pub project: String,
pub profile: String,
pub checked_out_at: String,
pub members: BTreeMap<String, ManifestMember>,
}Expand description
.ign-workspace.json — the recorded checkout state.
Fields§
§schema_version: u8Manifest format version (WORKSPACE_MANIFEST_SCHEMA_VERSION).
project: StringThe gateway project the workspace checks out.
profile: StringThe profile name checkout resolved against (13-07 passes it down; recorded for status/push context, never re-derived).
checked_out_at: StringCheckout time, RFC3339 UTC (…Z).
members: BTreeMap<String, ManifestMember>Gateway member path → its recorded checkout facts. BTreeMap: deterministic serialization.
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 (const: unstable) · 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<'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
Source§impl PartialEq for WorkspaceManifest
impl PartialEq for WorkspaceManifest
Source§impl Serialize for WorkspaceManifest
impl Serialize for WorkspaceManifest
impl StructuralPartialEq for WorkspaceManifest
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