Skip to main content

AppCommand

Enum AppCommand 

Source
pub enum AppCommand {
Show 27 variants Down, Up, Expand, Collapse, ExpandRecursively, Toggle, ToggleRecursively, CollapseRecursively, Select, Accept, AcceptAlternate, Descend, Root, PopRoot, Back, NextSibling, PrevSibling, PageDown, PageUp, HalfPageDown, HalfPageUp, First, Last, Jump, Open, Quit, ToggleKeybindingPanel,
}
Expand description

A command understood by the application itself (the cmd binding kind).

Variants§

§

Down

Move focus to the next on-screen line.

§

Up

Move focus to the previous on-screen line.

§

Expand

Expand the focused non-leaf, focus its first child if already expanded, or focus the next sibling of a leaf.

§

Collapse

Collapse the focused expanded branch, or focus its parent.

§

ExpandRecursively

Expand the focused non-leaf recursively, or focus the next sibling of a leaf.

§

Toggle

Flip the focused container between expanded and collapsed.

§

ToggleRecursively

Flip the focused container, expanding or collapsing recursively.

§

CollapseRecursively

Collapse the focused expanded branch recursively, or collapse its parent recursively and focus it.

§

Select

Enter semantics: expand a non-leaf, run the default action on a leaf.

§

Accept

Run the default action regardless of leaf-ness.

§

AcceptAlternate

Run the source-specific alternate action regardless of leaf-ness.

§

Descend

Descend into a non-leaf, expanding it first if collapsed.

§

Root

Make the focused node the root of the visible tree.

§

PopRoot

Restore the previous visible root.

§

Back

Restore the previous visible root, or quit at the original forest.

§

NextSibling

Focus next sibling, skipping over expanded children.

§

PrevSibling

Focus previous sibling.

§

PageDown

Scroll down one page.

§

PageUp

Scroll up one page.

§

HalfPageDown

Scroll down half a page.

§

HalfPageUp

Scroll up half a page.

§

First

Go to the first line.

§

Last

Go to the last visible line.

§

Jump

Open the jump picker: fuzzy-find a node by path and move focus to it.

§

Open

Hand the focused leaf’s filesystem path to the platform’s default opener. Nodes without one — containers, JSON — are left alone.

§

Quit

Exit without printing anything.

§

ToggleKeybindingPanel

Toggle the keybinding panel. Bound to the reserved ? key and not nameable in config, so it has no entry in AppCommand::parse.

Implementations§

Source§

impl AppCommand

Source

pub fn parse(s: &str) -> Result<Self, String>

Source

pub fn description(self) -> &'static str

The keybinding panel’s description of this command.

Trait Implementations§

Source§

impl Clone for AppCommand

Source§

fn clone(&self) -> AppCommand

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for AppCommand

Source§

impl Debug for AppCommand

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for AppCommand

Source§

impl PartialEq for AppCommand

Source§

fn eq(&self, other: &AppCommand) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for AppCommand

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.