pub struct App {
pub running: bool,
pub clipboard: Clipboard,
pub tts: Tts,
pub pause: bool,
pub history: Vec<String>,
pub last_copy: String,
pub tab_length: u16,
pub selected: usize,
pub jump_length: u16,
pub last_paragraph: usize,
pub pdf_mode: bool,
}Fields§
§running: bool§clipboard: Clipboard§tts: Tts§pause: bool§history: Vec<String>§last_copy: String§tab_length: u16§selected: usize§jump_length: u16§last_paragraph: usize§pdf_mode: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for App
impl !RefUnwindSafe for App
impl Send for App
impl Sync for App
impl Unpin for App
impl !UnwindSafe for App
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more