pub enum Request {
Show 25 variants
Initialize(InitializeParams),
IdentityGet,
IssueList(IssueListParams),
IssueGet(IdParams),
IssueReady(IssueListParams),
IssueSearch(SearchParams),
IssueClaims(ClaimsParams),
IssueAgenda(AgendaParams),
IssueShow(IdParams),
IssueExcerpt(IdParams),
IssueTree(TreeParams),
IssueRelated(RelatedParams),
IssueChildren(WalkParams),
IssueAncestors(WalkParams),
IssueImpact(WalkParams),
IssueBacklinks(WalkParams),
IssueOpen(IdParams),
IssueCreate(CreateParams),
IssueUpdate(UpdateParams),
IssueClaim(ClaimParams),
IssueNote(NoteParams),
IssueRefile(RefileParams),
ProjectList,
EventsSince(EventsSinceParams),
EventsGen,
}Expand description
Typed v1 request.
Variants§
Initialize(InitializeParams)
Handshake.
IdentityGet
Process identity, root, prefix, and crate version.
IssueList(IssueListParams)
Filtered issue rows.
IssueGet(IdParams)
One issue plus revision.
IssueReady(IssueListParams)
Frontier: issue/list with ready: true.
IssueSearch(SearchParams)
Substring search over id, title, properties, tags, and body.
IssueClaims(ClaimsParams)
Live claims.
IssueAgenda(AgendaParams)
Deadlines and scheduled starts.
IssueShow(IdParams)
Alias of Self::IssueGet.
IssueExcerpt(IdParams)
Secret-screened body range.
IssueTree(TreeParams)
Children and blockers.
IssueRelated(RelatedParams)
Bounded neighborhood with evidence.
IssueChildren(WalkParams)
Direct children.
IssueAncestors(WalkParams)
Walk up the blocker graph.
IssueImpact(WalkParams)
Walk down the blocker graph.
IssueBacklinks(WalkParams)
Everything pointing at the id.
IssueOpen(IdParams)
Shared selection; notifies issue/selected.
IssueCreate(CreateParams)
Create an issue.
IssueUpdate(UpdateParams)
State, priority, block, unblock.
IssueClaim(ClaimParams)
Take the issue.
IssueNote(NoteParams)
Dated logbook entry.
IssueRefile(RefileParams)
Move to another project.
ProjectList
Project names plus revision.
EventsSince(EventsSinceParams)
Pull of the on-disk event log.
EventsGen
Current generation and revision.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Request
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnsafeUnpin for Request
impl UnwindSafe for Request
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