[][src]Struct lll::application::app::App

pub struct App {
    pub siv: Cursive,
    pub vec_tabs: Rc<RefCell<HashMap<u32, Tab>>>,
    // some fields omitted
}

The data structure holding various elements related to App.

Fields

siv: Cursivevec_tabs: Rc<RefCell<HashMap<u32, Tab>>>

Methods

impl App[src]

pub fn new() -> Result<Self, Error>[src]

pub fn load_bindings(&mut self)[src]

Funtion to load key-bindings.

pub fn add_tab(&mut self, name: u32, path: PathBuf) -> Result<(), Error>[src]

Add new tab to main view.

pub fn run(&mut self)[src]

Auto Trait Implementations

impl !Send for App

impl !Sync for App

impl Unpin for App

impl !UnwindSafe for App

impl !RefUnwindSafe for App

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> With for T[src]

impl<T> Erased for T