struct McpRetiredWorktreeRow {
alias: String,
last_root: Option<String>,
path_display: McpWorktreePathDisplayState,
project_instance_id: Option<String>,
accepted_telemetry_revision: u64,
}Expand description
Retired ProjectAtlas registration retained outside source selection.
Fields§
§alias: StringLast human/agent-facing alias.
last_root: Option<String>Last structurally validated source root.
path_display: McpWorktreePathDisplayStateWhether the retained root has a lossless UTF-8 projection.
project_instance_id: Option<String>Exact initialized project identity when one was bound.
accepted_telemetry_revision: u64Last local aggregate revision accepted before retirement.
Trait Implementations§
Source§impl Debug for McpRetiredWorktreeRow
impl Debug for McpRetiredWorktreeRow
Auto Trait Implementations§
impl Freeze for McpRetiredWorktreeRow
impl RefUnwindSafe for McpRetiredWorktreeRow
impl Send for McpRetiredWorktreeRow
impl Sync for McpRetiredWorktreeRow
impl Unpin for McpRetiredWorktreeRow
impl UnsafeUnpin for McpRetiredWorktreeRow
impl UnwindSafe for McpRetiredWorktreeRow
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more