pub enum ActionId {
Show 28 variants
ListDown,
ListUp,
ListSelect,
ListDone,
PaneReady,
PaneList,
PaneClaims,
PaneAgenda,
PaneSearch,
PaneNext,
DetailCycle,
ProjectCycle,
Search,
Add,
Claim,
Note,
Deed,
StateCycle,
ConfirmDone,
ConfirmCancel,
Open,
CopyId,
Reload,
Help,
Palette,
PreviewToggle,
PreviewDown,
PreviewUp,
}Expand description
Dotted action id. HUD-shaped, remappable except reserved chords.
Variants§
ListDown
Move the list cursor down.
ListUp
Move the list cursor up.
ListSelect
Open the selected issue.
ListDone
Toggle done on the selected issue.
PaneReady
Switch to the ready pane.
PaneList
Switch to the full list pane.
PaneClaims
Switch to the claims pane.
PaneAgenda
Switch to the agenda pane.
PaneSearch
Switch to the search pane.
PaneNext
Cycle to the next pane.
DetailCycle
Cycle the detail card.
ProjectCycle
Cycle the project filter.
Search
Focus the board search box.
Add
Create an issue.
Claim
Claim the selected issue.
Note
Append a note to the selected issue.
Deed
Cite a deed on the selected issue.
StateCycle
Cycle the selected issue’s state.
ConfirmDone
Confirm marking the selected issue done.
ConfirmCancel
Confirm cancelling the selected issue.
Open
Open the selected issue in an editor.
CopyId
Copy the selected issue id.
Reload
Reload the board from disk.
Help
Show the key help overlay.
Palette
Open the command palette.
PreviewToggle
Hide or show the detail preview.
PreviewDown
Scroll the detail preview down.
PreviewUp
Scroll the detail preview up.
Implementations§
Trait Implementations§
impl Copy for ActionId
impl Eq for ActionId
Source§impl Ord for ActionId
impl Ord for ActionId
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialOrd for ActionId
impl PartialOrd for ActionId
impl StructuralPartialEq for ActionId
Auto Trait Implementations§
impl Freeze for ActionId
impl RefUnwindSafe for ActionId
impl Send for ActionId
impl Sync for ActionId
impl Unpin for ActionId
impl UnsafeUnpin for ActionId
impl UnwindSafe for ActionId
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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