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.
Auto Trait Implementations§
impl Freeze for AnimationProgressFrame
impl RefUnwindSafe for AnimationProgressFrame
impl Send for AnimationProgressFrame
impl Sync for AnimationProgressFrame
impl Unpin for AnimationProgressFrame
impl UnwindSafe for AnimationProgressFrame
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