[][src]Struct cursive_async_view::AsyncProgressView

pub struct AsyncProgressView<T: View> { /* fields omitted */ }

An AsyncProgressView is a wrapper view that displays a progress bar, until the child view is successfully created or an error in the creation progress occured.

To achieve this a poll_ready callback is passed in the creation of AsyncProgressView which returns an AsyncProgressState that can indicate that the process is still Pending (this contains a float between 0 and 1, communicating the progress, this information is displayed in the bar), has been successfully completed Available containing the view to be displayed, or if the creation has thrown an Error containing a message to be shown to the user.

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! Otherwise cursive cannot proceed displaying and your application will have a blocking loading process!

If you have troubles and need some more in-depth examples have a look at the provided examples in the project.

Example usage

use cursive::{views::TextView, Cursive};
use cursive_async_view::{AsyncProgressView, AsyncProgressState};

let mut siv = Cursive::default();
let start = std::time::Instant::now();
let async_view = AsyncProgressView::new(&mut siv, move || {
    if start.elapsed().as_secs() < 3 {
        AsyncProgressState::Pending(start.elapsed().as_secs() as f32 / 3f32)
    } else {
        AsyncProgressState::Available(TextView::new("Finally it loaded!"))
    }
});

siv.add_layer(async_view);
// siv.run();

Methods

impl<T: View> AsyncProgressView<T>[src]

pub fn new<F>(siv: &mut Cursive, creator: F) -> Self where
    F: FnMut() -> AsyncProgressState<T> + 'static, 
[src]

Create a new AsyncProgressView instance. The cursive reference is only used to update the screen when a progress update is received. In order to show the view, it has to be directly or indirectly added to a cursive layer like any other view.

The creator function will be executed on a dedicated thread in the background. Make sure that this function will never block indefinitely. Otherwise, the creation thread will get stuck.

pub fn with_width(self, width: usize) -> Self[src]

Mark the maximum allowed width in characters, the progress bar 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 progress bar may consume. By default, the height will be inherited by the parent view.

pub fn with_progress_fn<F>(self, progress_fn: F) -> Self where
    F: Fn(usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static, 
[src]

Set a custom progress function for this view, indicating the progress of the wrapped view creation. See the default_progress function reference for an example on how to create a custom progress function.

pub fn with_error_fn<F>(self, error_fn: F) -> Self where
    F: Fn(String, usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static, 
[src]

pub fn set_width(&mut self, width: usize)[src]

Set the maximum allowed width in characters, the progress bar may consume.

pub fn set_height(&mut self, height: usize)[src]

Set the maximum allowed height in characters, the progress bar may consume.

pub fn set_progress_fn<F>(&mut self, progress_fn: F) where
    F: Fn(usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static, 
[src]

Set a custom progress function for this view, indicating the progress of the wrapped view creation. See the default_progress function reference for an example on how to create a custom progress function.

The function may be set at any time. The progress bar can be changed even if the previous progress bar has already be drawn.

pub fn set_error_fn<F>(&mut self, error_fn: F) where
    F: Fn(String, usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static, 
[src]

Set a custom error function for this view, indicating that an error occured during the wrapped view creation. See the default_progress_error function reference for an example on how to create a custom error function.

The function may be set at any time. The progress bar can be changed even if the previous progress bar has already be drawn.

pub fn inherit_width(&mut self)[src]

Make the progress bar inherit its width from the parent view. This is the default.

pub fn inherit_height(&mut self)[src]

Make the progress bar inherit its height from the parent view. This is the default.

Trait Implementations

impl<T: View + Send + Sized> View for AsyncProgressView<T>[src]

Auto Trait Implementations

impl<T> !Send for AsyncProgressView<T>

impl<T> Unpin for AsyncProgressView<T> where
    T: Unpin

impl<T> !Sync for AsyncProgressView<T>

impl<T> !UnwindSafe for AsyncProgressView<T>

impl<T> !RefUnwindSafe for AsyncProgressView<T>

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

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

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

impl<T> View for T where
    T: ViewWrapper
[src]

impl<T> Finder for T where
    T: View
[src]

impl<T> Scrollable for T where
    T: View
[src]

impl<T> Identifiable for T where
    T: View
[src]

impl<T> With for T[src]

impl<T> Boxable for T where
    T: View
[src]

impl<T> AnyView for T where
    T: View
[src]

fn as_any(&self) -> &(dyn Any + 'static)[src]

Downcast self to a Any.

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)[src]

Downcast self to a mutable Any.

impl<T> IntoBoxedView for T where
    T: View
[src]

impl<T> Erased for T