pub enum Response {
Show 47 variants
Initialize(InitializeResult),
IdentityGet(IdentityResult),
IssueList(IssueListResult),
IssueGet(IssueGetResult),
IssueReady(IssueListResult),
IssueSearch(Vec<SearchHit>),
IssueClaims(Vec<ClaimRow>),
IssueAgenda(Vec<AgendaRow>),
IssueShow(IssueGetResult),
IssueExcerpt(Excerpt),
IssueTree(TreeResult),
IssueRelated(Vec<RelatedHit>),
IssueChildren(Vec<WalkHit>),
IssueAncestors(Vec<WalkHit>),
IssueImpact(Vec<WalkHit>),
IssueBacklinks(Vec<WalkHit>),
IssueOpen(IssueGetResult),
IssueCreate(MutResult),
IssueUpdate(MutResult),
IssueClaim(MutResult),
IssueNote(MutResult),
IssueRefile(MutResult),
IssueAppend(MutResult),
IssueReject(MutResult),
IssueResolve(MutResult),
IssueVote(MutResult),
IssueDeed(MutResult),
IssueRecall(Recall),
IssueConsensus(Value),
IssueFold(MutResult),
IssueNormalize(MutResult),
IssueCheck(CheckResult),
IssueCount(ReportResult),
IssueCycles(ReportResult),
IssueDigest(DigestResult),
IssueExport(ReportResult),
IssueGraph(ReportResult),
IssueRoadmap(ReportResult),
IssueStale(ReportResult),
IssueHygiene(ReportResult),
IssueWaitingOn(ReportResult),
IssueMirror(MirrorCheckResult),
EventsPing(ReportResult),
EventsWait(WaitResult),
ProjectList(ProjectListResult),
EventsSince(EventsSinceResult),
EventsGen(EventsGenResult),
}Expand description
Typed v1 result body.
Variants§
Initialize(InitializeResult)
Handshake.
IdentityGet(IdentityResult)
Process identity, root, prefix, and crate version.
IssueList(IssueListResult)
Filtered issue rows.
IssueGet(IssueGetResult)
One issue plus revision.
IssueReady(IssueListResult)
Frontier page.
IssueSearch(Vec<SearchHit>)
Search hits.
IssueClaims(Vec<ClaimRow>)
Live claims.
IssueAgenda(Vec<AgendaRow>)
Deadlines and scheduled starts.
IssueShow(IssueGetResult)
Alias of Self::IssueGet.
IssueExcerpt(Excerpt)
Secret-screened body range.
IssueTree(TreeResult)
Children and blockers.
IssueRelated(Vec<RelatedHit>)
Bounded neighborhood with evidence.
IssueChildren(Vec<WalkHit>)
Direct children.
IssueAncestors(Vec<WalkHit>)
Walk up the blocker graph.
IssueImpact(Vec<WalkHit>)
Walk down the blocker graph.
IssueBacklinks(Vec<WalkHit>)
Everything pointing at the id.
IssueOpen(IssueGetResult)
Shared selection result.
IssueCreate(MutResult)
Create result.
IssueUpdate(MutResult)
Update result.
IssueClaim(MutResult)
Claim result.
IssueNote(MutResult)
Note result.
IssueRefile(MutResult)
Refile result.
IssueAppend(MutResult)
Dated report under the heading.
IssueReject(MutResult)
Cancel and point at a successor.
IssueResolve(MutResult)
Settle on a sibling terminal state.
IssueVote(MutResult)
Cast a ballot, or read the tally.
IssueDeed(MutResult)
Cite, drop, or read the deeds an issue produced.
IssueRecall(Recall)
The working set for an issue.
IssueConsensus(Value)
Consensus over an issue’s ballots, or over its children.
IssueFold(MutResult)
Inbox headings become issues.
IssueNormalize(MutResult)
Rewrite onto the property split.
IssueCheck(CheckResult)
Validation findings plus counts.
IssueCount(ReportResult)
Counts by project, state, readiness.
IssueCycles(ReportResult)
Blocker cycles, if any.
IssueDigest(DigestResult)
Corpus hash, combined and per project.
IssueExport(ReportResult)
The corpus as text.
IssueGraph(ReportResult)
One dot document.
IssueRoadmap(ReportResult)
One roadmap document.
IssueStale(ReportResult)
Issues untouched for a number of days.
IssueHygiene(ReportResult)
Stalled claims plus validation.
IssueWaitingOn(ReportResult)
What blocks one issue.
IssueMirror(MirrorCheckResult)
The mirror’s stamp.
EventsPing(ReportResult)
Liveness and detail.
EventsWait(WaitResult)
Generation reached, or the state waited for.
ProjectList(ProjectListResult)
Project names plus revision.
EventsSince(EventsSinceResult)
Pull of the on-disk event log.
EventsGen(EventsGenResult)
Current generation and revision.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Response
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnsafeUnpin for Response
impl UnwindSafe for Response
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> ⓘ
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> ⓘ
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