Struct intelli_shell::process::FetchProcess
source · pub struct FetchProcess<'a> { /* private fields */ }
Expand description
Process to fetch new commands
This process will provide no UI, it will perform the job on peek
Implementations§
source§impl<'a> FetchProcess<'a>
impl<'a> FetchProcess<'a>
pub fn new(category: Option<String>, storage: &'a SqliteStorage) -> Self
Trait Implementations§
source§impl<'a> Process for FetchProcess<'a>
impl<'a> Process for FetchProcess<'a>
source§fn min_height(&self) -> usize
fn min_height(&self) -> usize
Minimum height needed to render the process
source§fn render<B: Backend>(&mut self, _frame: &mut Frame<'_, B>, _area: Rect)
fn render<B: Backend>(&mut self, _frame: &mut Frame<'_, B>, _area: Rect)
Render
self
in the given area from the framesource§fn process_raw_event(&mut self, _event: Event) -> Result<Option<ProcessOutput>>
fn process_raw_event(&mut self, _event: Event) -> Result<Option<ProcessOutput>>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for FetchProcess<'a>
impl<'a> Send for FetchProcess<'a>
impl<'a> Sync for FetchProcess<'a>
impl<'a> Unpin for FetchProcess<'a>
impl<'a> UnwindSafe for FetchProcess<'a>
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