enum McpWorktreeTelemetryState {
Control,
Current,
Pending,
MissingAtlas,
Unregistered,
Unavailable,
}Expand description
Relationship between independent local and durable control telemetry.
Variants§
Control
Native telemetry belongs to the selected control atlas.
Current
The latest readable local snapshot has been accepted.
Pending
A newer readable local snapshot awaits synchronization.
MissingAtlas
No local atlas exists yet.
Unregistered
No ProjectAtlas registration owns this structural row.
Structural or atlas state prevents a trustworthy comparison.
Trait Implementations§
Source§impl Clone for McpWorktreeTelemetryState
impl Clone for McpWorktreeTelemetryState
Source§fn clone(&self) -> McpWorktreeTelemetryState
fn clone(&self) -> McpWorktreeTelemetryState
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 moreimpl Copy for McpWorktreeTelemetryState
Source§impl Debug for McpWorktreeTelemetryState
impl Debug for McpWorktreeTelemetryState
Auto Trait Implementations§
impl Freeze for McpWorktreeTelemetryState
impl RefUnwindSafe for McpWorktreeTelemetryState
impl Send for McpWorktreeTelemetryState
impl Sync for McpWorktreeTelemetryState
impl Unpin for McpWorktreeTelemetryState
impl UnsafeUnpin for McpWorktreeTelemetryState
impl UnwindSafe for McpWorktreeTelemetryState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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