struct McpCompactBriefPurposeHandoff {
agent_harness_expected: bool,
main_agent_fallback: bool,
server_started_curator: bool,
silent_on_success: bool,
truncated: bool,
next_call: McpCompactBriefRecommendation,
}Expand description
Compact host-owned purpose-curator handoff for startup briefs.
Fields§
§agent_harness_expected: boolWhether this report is intended for an agent harness.
main_agent_fallback: boolWhether the current main agent may process the same bounded batch.
server_started_curator: boolExplicitly records that ProjectAtlas did not spawn a host agent.
silent_on_success: boolSuccessful maintenance should not add ordinary conversation output.
truncated: boolWhether the queue call has more rows after this bounded batch.
next_call: McpCompactBriefRecommendationExact existing MCP call that returns conditional-review tokens and bounded row context.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for McpCompactBriefPurposeHandoff
impl RefUnwindSafe for McpCompactBriefPurposeHandoff
impl Send for McpCompactBriefPurposeHandoff
impl Sync for McpCompactBriefPurposeHandoff
impl Unpin for McpCompactBriefPurposeHandoff
impl UnwindSafe for McpCompactBriefPurposeHandoff
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