Struct cursive_async_view::AsyncView [−][src]
An AsyncView is a wrapper view that displays a loading screen, until the
child view is ready to be created. The view can be used in two different
ways.
Poll-based AsyncView
The poll-based AsyncView is constructed via the AsyncView::new function
and regularly calls the provided poll_ready function. It indicates
whether the child view is available or not by returning an AsyncState
enum. The poll_ready callback should only check for data to be
available and create the child view when the data got available. It must
never block until the data is available or do heavy calculations!
Use a different thread for long taking calculations. Check the bg_task
example for an example on how to use a dedicated calculation thread with
the AsyncView.
Example usage of the poll-based variant
use std::time::{Instant, Duration}; use cursive::{views::TextView, Cursive, CursiveExt}; use cursive_async_view::{AsyncView, AsyncState}; let mut siv = Cursive::default(); let instant = Instant::now(); let async_view = AsyncView::new(&mut siv, move || { // check if the view can be created if instant.elapsed() > Duration::from_secs(10) { AsyncState::Available( TextView::new("Yay!\n\nThe content has loaded!") ) } else { AsyncState::Pending } }); siv.add_layer(async_view); // siv.run();
The content will be displayed after 10 seconds.
Producing view data in a background thread
The second variant produces custom data in a background thread via the
provided bg_task function. The produced data is then sent to the cursive
thread and given to the provided view_creator function. This function
should construct the child view and return it to the async view.
All heavy work must be done in the bg_task function. Otherwise,
the cursive event loop will be blocked, preventing any rendering or event
handling taking place.
Example usage for the background thread variant
use std::thread; use std::time::Duration; use cursive::views::TextView; use cursive::{Cursive, CursiveExt}; use cursive_async_view::AsyncView; let mut siv = Cursive::default(); let async_view = AsyncView::new_with_bg_creator(&mut siv, move || { // this function is executed in a background thread, so we can block // here as long as we like thread::sleep(Duration::from_secs(10)); // enough blocking, let's show the content Ok("Yeet! It worked 🖖") }, TextView::new); // create a text view from the string siv.add_layer(async_view); // siv.run();
The content will be displayed after 10 seconds.
Implementations
impl<T: View> AsyncView<T>[src]
pub fn new<F>(siv: &mut Cursive, ready_poll: F) -> Self where
F: FnMut() -> AsyncState<T> + 'static, [src]
F: FnMut() -> AsyncState<T> + 'static,
Create a new AsyncView instance. The cursive reference is used
to control the refresh rate of the terminal when the loading animation
is running. In order to show the view, it has to be directly or indirectly
added to a cursive layer like any other view.
The ready_poll function will be called regularly until the view has
either been loaded or errored. Use this function only to check whether
your data is available. Do not run heavy calculations in this function.
Instead use a dedicated thread for it as shown in the bg_task example.
pub fn new_with_bg_creator<F, C, D>(
siv: &mut Cursive,
bg_task: F,
view_creator: C
) -> Self where
D: Send + 'static,
F: FnOnce() -> Result<D, String> + Send + 'static,
C: FnMut(D) -> T + 'static, [src]
siv: &mut Cursive,
bg_task: F,
view_creator: C
) -> Self where
D: Send + 'static,
F: FnOnce() -> Result<D, String> + Send + 'static,
C: FnMut(D) -> T + 'static,
Create a new AsyncView instance. The cursive reference is used
to control the refresh rate of the terminal when the loading animation
is running. In order to show the view, it has to be directly or indirectly
added to a cursive layer like any other view.
The bg_task function is executed on a background thread called
cursive-async-view::bg_task. It should be used to produce data of
type D which is converted to a view by the view_creator function.
pub fn with_width(self, width: usize) -> Self[src]
Mark the maximum allowed width in characters, the loading animation may consume. By default, the width will be inherited by the parent view.
pub fn with_height(self, height: usize) -> Self[src]
Mark the maximum allowed height in characters, the loading animation may consume. By default, the height will be inherited by the parent view.
pub fn with_animation_fn<F>(self, animation_fn: F) -> Self where
F: Fn(usize, usize, usize) -> AnimationFrame + 'static, [src]
F: Fn(usize, usize, usize) -> AnimationFrame + 'static,
Set a custom animation function for this view, indicating that the wrapped view is
not available yet. See the default_animation function reference for an example on
how to create a custom animation function.
pub fn with_error_fn<F>(self, error_fn: F) -> Self where
F: Fn(&str, usize, usize, usize, usize) -> AnimationFrame + 'static, [src]
F: Fn(&str, usize, usize, usize, usize) -> AnimationFrame + 'static,
Set a custom error animation function for this view, indicating that the
wrapped view has failed to load. See the default_error function
reference for an example on how to create a custom error animation
function.
pub fn set_width(&mut self, width: usize)[src]
Set the maximum allowed width in characters, the loading animation may consume.
pub fn set_height(&mut self, height: usize)[src]
Set the maximum allowed height in characters, the loading animation may consume.
pub fn set_animation_fn<F>(&mut self, animation_fn: F) where
F: Fn(usize, usize, usize) -> AnimationFrame + 'static, [src]
F: Fn(usize, usize, usize) -> AnimationFrame + 'static,
Set a custom animation function for this view, indicating that the wrapped view is
not available yet. See the default_animation function reference for an example on
how to create a custom animation function.
This function may be set at any time. The loading animation can be changed even if the previous loading animation has already started.
pub fn set_error_fn<F>(&mut self, error_fn: F) where
F: Fn(&str, usize, usize, usize, usize) -> AnimationFrame + 'static, [src]
F: Fn(&str, usize, usize, usize, usize) -> AnimationFrame + 'static,
Set a custom error animation function for this view, indicating that the wrapped view
has failed to load. See the default_error function reference for an example on
how to create a custom error animation function.
This function may be set at any time. The error animation can be changed even if the previous error animation has already started.
pub fn inherit_width(&mut self)[src]
Make the loading animation inherit its width from the parent view. This is the default.
pub fn inherit_height(&mut self)[src]
Make the loading animation inherit its height from the parent view. This is the default.
Trait Implementations
impl<T: View> Drop for AsyncView<T>[src]
impl<T: View + Sized> View for AsyncView<T>[src]
fn draw(&self, printer: &Printer<'_, '_>)[src]
fn layout(&mut self, vec: Vec2)[src]
fn needs_relayout(&self) -> bool[src]
fn required_size(&mut self, constraint: Vec2) -> Vec2[src]
fn on_event(&mut self, ev: Event) -> EventResult[src]
fn call_on_any<'a>(&mut self, sel: &Selector<'_>, cb: AnyCb<'a>)[src]
fn focus_view(&mut self, sel: &Selector<'_>) -> Result<(), ViewNotFound>[src]
fn take_focus(&mut self, source: Direction) -> bool[src]
fn important_area(&self, view_size: Vec2) -> Rect[src]
pub fn type_name(&self) -> &'static str[src]
Auto Trait Implementations
impl<T> !RefUnwindSafe for AsyncView<T>
impl<T> !Send for AsyncView<T>
impl<T> !Sync for AsyncView<T>
impl<T> Unpin for AsyncView<T> where
T: Unpin,
T: Unpin,
impl<T> !UnwindSafe for AsyncView<T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> AnyView for T where
T: View, [src]
T: View,
pub fn as_any(&self) -> &(dyn Any + 'static)[src]
Downcast self to a Any.
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)[src]
Downcast self to a mutable Any.
pub fn as_boxed_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Erased for T
impl<T> Finder for T where
T: View, [src]
T: View,
pub fn call_on_all<V, F>(&mut self, sel: &Selector<'_>, callback: F) where
V: View,
F: FnMut(&mut V), [src]
V: View,
F: FnMut(&mut V),
pub fn call_on<V, F, R>(&mut self, sel: &Selector<'_>, callback: F) -> Option<R> where
V: View,
F: FnOnce(&mut V) -> R, [src]
V: View,
F: FnOnce(&mut V) -> R,
pub fn call_on_name<V, F, R>(&mut self, name: &str, callback: F) -> Option<R> where
V: View,
F: FnOnce(&mut V) -> R, [src]
V: View,
F: FnOnce(&mut V) -> R,
pub fn call_on_id<V, F, R>(&mut self, id: &str, callback: F) -> Option<R> where
V: View,
F: FnOnce(&mut V) -> R, [src]
V: View,
F: FnOnce(&mut V) -> R,
pub fn find_name<V>(
&mut self,
name: &str
) -> Option<OwningHandle<OwningRef<Rc<RefCell<V>>, RefCell<V>>, RefMut<'static, V>>> where
V: View, [src]
&mut self,
name: &str
) -> Option<OwningHandle<OwningRef<Rc<RefCell<V>>, RefCell<V>>, RefMut<'static, V>>> where
V: View,
pub fn find_id<V>(
&mut self,
id: &str
) -> Option<OwningHandle<OwningRef<Rc<RefCell<V>>, RefCell<V>>, RefMut<'static, V>>> where
V: View, [src]
&mut self,
id: &str
) -> Option<OwningHandle<OwningRef<Rc<RefCell<V>>, RefCell<V>>, RefMut<'static, V>>> where
V: View,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> IntoBoxedView for T where
T: View, [src]
T: View,
pub fn into_boxed_view(self) -> Box<dyn View + 'static, Global>[src]
impl<T> Nameable for T where
T: View, [src]
T: View,
pub fn with_name<S>(self, name: S) -> NamedView<Self> where
S: Into<String>, [src]
S: Into<String>,
pub fn with_id<S>(self, id: S) -> NamedView<Self> where
S: Into<String>, [src]
S: Into<String>,
impl<T> Pointable for T
pub const ALIGN: usize
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
pub unsafe fn drop(ptr: usize)
impl<T> Resizable for T where
T: View, [src]
T: View,
pub fn boxed(
self,
width: SizeConstraint,
height: SizeConstraint
) -> ResizedView<Self>[src]
self,
width: SizeConstraint,
height: SizeConstraint
) -> ResizedView<Self>
pub fn resized(
self,
width: SizeConstraint,
height: SizeConstraint
) -> ResizedView<Self>[src]
self,
width: SizeConstraint,
height: SizeConstraint
) -> ResizedView<Self>
pub fn fixed_size<S>(self, size: S) -> ResizedView<Self> where
S: Into<XY<usize>>, [src]
S: Into<XY<usize>>,
pub fn fixed_width(self, width: usize) -> ResizedView<Self>[src]
pub fn fixed_height(self, height: usize) -> ResizedView<Self>[src]
pub fn full_screen(self) -> ResizedView<Self>[src]
pub fn full_width(self) -> ResizedView<Self>[src]
pub fn full_height(self) -> ResizedView<Self>[src]
pub fn max_size<S>(self, size: S) -> ResizedView<Self> where
S: Into<XY<usize>>, [src]
S: Into<XY<usize>>,
pub fn max_width(self, max_width: usize) -> ResizedView<Self>[src]
pub fn max_height(self, max_height: usize) -> ResizedView<Self>[src]
pub fn min_size<S>(self, size: S) -> ResizedView<Self> where
S: Into<XY<usize>>, [src]
S: Into<XY<usize>>,
pub fn min_width(self, min_width: usize) -> ResizedView<Self>[src]
pub fn min_height(self, min_height: usize) -> ResizedView<Self>[src]
impl<T> Scrollable for T where
T: View, [src]
T: View,
pub fn scrollable(self) -> ScrollView<Self>[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> With for T[src]
pub fn wrap_with<U, F>(self, f: F) -> U where
F: FnOnce(Self) -> U, [src]
F: FnOnce(Self) -> U,
pub fn with<F>(self, f: F) -> Self where
F: FnOnce(&mut Self), [src]
F: FnOnce(&mut Self),
pub fn try_with<E, F>(self, f: F) -> Result<Self, E> where
F: FnOnce(&mut Self) -> Result<(), E>, [src]
F: FnOnce(&mut Self) -> Result<(), E>,
pub fn with_if<F>(self, condition: bool, f: F) -> Self where
F: FnOnce(&mut Self), [src]
F: FnOnce(&mut Self),