pub struct AnimationProgressFrame {
pub content: StyledString,
pub pos: usize,
pub next_frame_idx: usize,
}
Expand description
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.