[][src]Struct cursive_async_view::AnimationProgressFrame

pub struct AnimationProgressFrame {
    pub content: StyledString,
    pub pos: usize,
    pub next_frame_idx: usize,
}

This struct contains the content of a single frame for AsyncProgressView with some metadata about the current frame.

Fields

content: StyledString

Stylized String which gets printed until the view is ready, or if the creation has failed.

pos: usize

Current position of the loading bar.

next_frame_idx: usize

Index of the next frame to be drawn, useful if you want to interpolate between two states of progress.

Auto Trait Implementations

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> With for T[src]

impl<T> Erased for T