[][src]Struct meli::conf::shortcuts::ListingShortcuts

pub struct ListingShortcuts {
    pub scroll_up: Key,
    pub scroll_down: Key,
    pub new_mail: Key,
    pub next_account: Key,
    pub next_mailbox: Key,
    pub next_page: Key,
    pub prev_account: Key,
    pub prev_mailbox: Key,
    pub open_mailbox: Key,
    pub prev_page: Key,
    pub search: Key,
    pub refresh: Key,
    pub set_seen: Key,
    pub union_modifier: Key,
    pub diff_modifier: Key,
    pub intersection_modifier: Key,
    pub select_entry: Key,
    pub toggle_menu_visibility: Key,
}

Shortcut listing for a mail listing.

Fields

scroll_up: Keyscroll_down: Keynew_mail: Keynext_account: Keynext_mailbox: Keynext_page: Keyprev_account: Keyprev_mailbox: Keyopen_mailbox: Keyprev_page: Keysearch: Keyrefresh: Keyset_seen: Keyunion_modifier: Keydiff_modifier: Keyintersection_modifier: Keyselect_entry: Keytoggle_menu_visibility: Key

Implementations

impl ListingShortcuts[src]

pub fn key_desc(&self, key: &str) -> &'static str[src]

Returns a shortcut's description

pub fn key_values(&self) -> IndexMap<&'static str, Key>[src]

Returns a hashmap of all shortcuts and their values

Trait Implementations

impl Clone for ListingShortcuts[src]

impl Debug for ListingShortcuts[src]

impl Default for ListingShortcuts[src]

impl<'de> Deserialize<'de> for ListingShortcuts where
    ListingShortcuts: Default
[src]

impl DotAddressable for ListingShortcuts[src]

impl Serialize for ListingShortcuts[src]

Auto Trait Implementations

impl RefUnwindSafe for ListingShortcuts

impl Send for ListingShortcuts

impl Sync for ListingShortcuts

impl Unpin for ListingShortcuts

impl UnwindSafe for ListingShortcuts

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]