Struct gpg_tui::app::launcher::App

source ·
pub struct App<'a> {
Show 13 fields pub state: State, pub mode: Mode, pub prompt: Prompt, pub tab: Tab, pub options: StatefulList<Command>, pub splash_screen: SplashScreen, pub key_bindings: StatefulList<KeyBinding<'a>>, pub keys: HashMap<KeyType, Vec<GpgKey>>, pub keys_table: StatefulTable<GpgKey>, pub keys_table_states: HashMap<KeyType, TableState>, pub keys_table_margin: u16, pub clipboard: Option<Box<dyn ClipboardProviderExt>>, pub gpgme: &'a mut GpgContext,
}
Expand description

Main application.

It is responsible for running the commands for changing the state of the interface.

Fields§

§state: State

Application state.

§mode: Mode

Application mode.

§prompt: Prompt

Prompt manager.

§tab: Tab

Current tab.

§options: StatefulList<Command>

Content of the options menu.

§splash_screen: SplashScreen

Splash screen of the application.

§key_bindings: StatefulList<KeyBinding<'a>>

Content of the key bindings list.

§keys: HashMap<KeyType, Vec<GpgKey>>

Public/secret keys.

§keys_table: StatefulTable<GpgKey>

Table of public/secret keys.

§keys_table_states: HashMap<KeyType, TableState>

States of the keys table.

§keys_table_margin: u16

Bottom margin value of the keys table.

§clipboard: Option<Box<dyn ClipboardProviderExt>>

Clipboard context.

§gpgme: &'a mut GpgContext

GPGME context.

Implementations§

source§

impl<'a> App<'a>

source

pub fn new(gpgme: &'a mut GpgContext, args: &'a Args) -> Result<Self>

Constructs a new instance of App.

source

pub fn refresh(&mut self) -> Result<()>

Resets the application state.

source

pub fn tick(&mut self)

Handles the tick event of the application.

It is currently used to flush the prompt messages.

source

pub fn run_command(&mut self, command: Command) -> Result<()>

Runs the given command which is used to specify the widget to render or action to perform.

Auto Trait Implementations§

§

impl<'a> Freeze for App<'a>

§

impl<'a> !RefUnwindSafe for App<'a>

§

impl<'a> !Send for App<'a>

§

impl<'a> !Sync for App<'a>

§

impl<'a> Unpin for App<'a>

§

impl<'a> !UnwindSafe for App<'a>

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<Src, Scheme> ApproxFrom<Src, Scheme> for Src
where Scheme: ApproxScheme,

§

type Err = NoError

The error type produced by a failed conversion.
source§

fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>

Convert the given value into an approximately equivalent representation.
source§

impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Src
where Dst: ApproxFrom<Src, Scheme>, Scheme: ApproxScheme,

§

type Err = <Dst as ApproxFrom<Src, Scheme>>::Err

The error type produced by a failed conversion.
source§

fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>

Convert the subject into an approximately equivalent representation.
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, Dst> ConvAsUtil<Dst> for T

source§

fn approx(self) -> Result<Dst, Self::Err>
where Self: Sized + ApproxInto<Dst>,

Approximate the subject with the default scheme.
source§

fn approx_by<Scheme>(self) -> Result<Dst, Self::Err>
where Self: Sized + ApproxInto<Dst, Scheme>, Scheme: ApproxScheme,

Approximate the subject with a specific scheme.
source§

impl<T> ConvUtil for T

source§

fn approx_as<Dst>(self) -> Result<Dst, Self::Err>
where Self: Sized + ApproxInto<Dst>,

Approximate the subject to a given type with the default scheme.
source§

fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>
where Self: Sized + ApproxInto<Dst, Scheme>, Scheme: ApproxScheme,

Approximate the subject to a given type with a specific scheme.
source§

fn into_as<Dst>(self) -> Dst
where Self: Sized + Into<Dst>,

Convert the subject to a given type.
source§

fn try_as<Dst>(self) -> Result<Dst, Self::Err>
where Self: Sized + TryInto<Dst>,

Attempt to convert the subject to a given type.
source§

fn value_as<Dst>(self) -> Result<Dst, Self::Err>
where Self: Sized + ValueInto<Dst>,

Attempt a value conversion of the subject to a given type.
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> Same for T

§

type Output = T

Should always be Self
source§

impl<Src> TryFrom<Src> for Src

§

type Err = NoError

The error type produced by a failed conversion.
source§

fn try_from(src: Src) -> Result<Src, <Src as TryFrom<Src>>::Err>

Convert the given value into the subject type.
source§

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

§

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<Src, Dst> TryInto<Dst> for Src
where Dst: TryFrom<Src>,

§

type Err = <Dst as TryFrom<Src>>::Err

The error type produced by a failed conversion.
source§

fn try_into(self) -> Result<Dst, <Src as TryInto<Dst>>::Err>

Convert the subject into the destination type.
source§

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

§

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.
source§

impl<Src> ValueFrom<Src> for Src

§

type Err = NoError

The error type produced by a failed conversion.
source§

fn value_from(src: Src) -> Result<Src, <Src as ValueFrom<Src>>::Err>

Convert the given value into an exactly equivalent representation.
source§

impl<Src, Dst> ValueInto<Dst> for Src
where Dst: ValueFrom<Src>,

§

type Err = <Dst as ValueFrom<Src>>::Err

The error type produced by a failed conversion.
source§

fn value_into(self) -> Result<Dst, <Src as ValueInto<Dst>>::Err>

Convert the subject into an exactly equivalent representation.