Skip to main content

Mode

Enum Mode 

Source
pub enum Mode {
    Normal,
    Choosing {
        path: Vec<Seg>,
        choices: Vec<Choice>,
        selected: usize,
        filter: String,
    },
    Editing {
        buffer: String,
        path: Vec<Seg>,
        slot: EditSlot,
    },
}
Expand description

Interaction mode: normal navigation, or editing one text field of a node.

Variants§

§

Normal

§

Choosing

Picking a value off a list rather than typing one (Model::begin_choose).

A mode of its own rather than an editor seeded with a list, because the two take different keys: everything printable is a filter here and a value there, and Enter commits a row rather than a buffer.

Fields

§path: Vec<Seg>

The node being chosen for.

§choices: Vec<Choice>

Everything on offer, unfiltered and in the order it was offered.

§selected: usize

Which of the filtered choices the cursor is on — see Model::visible_choices.

§filter: String

What has been typed to narrow the list.

§

Editing

Fields

§buffer: String
§path: Vec<Seg>

The node being edited. Held here rather than re-read from the selection on commit, so an edit belongs to a node and not to whichever list the cursor happens to be in — the two projections index differently, and a commit must not care which one opened it.

§slot: EditSlot

Which of the node’s texts the buffer holds.

Auto Trait Implementations§

§

impl Freeze for Mode

§

impl RefUnwindSafe for Mode

§

impl Send for Mode

§

impl Sync for Mode

§

impl Unpin for Mode

§

impl UnsafeUnpin for Mode

§

impl UnwindSafe for Mode

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> 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.