pub struct LoadProgress {
pub stage: String,
pub current: u32,
pub total: u32,
pub sub_progress: f32,
}Expand description
Describes progress through a multi-stage loading operation.
Fields§
§stage: String§current: u32§total: u32§sub_progress: f32Implementations§
Trait Implementations§
Source§impl Clone for LoadProgress
impl Clone for LoadProgress
Source§fn clone(&self) -> LoadProgress
fn clone(&self) -> LoadProgress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LoadProgress
impl RefUnwindSafe for LoadProgress
impl Send for LoadProgress
impl Sync for LoadProgress
impl Unpin for LoadProgress
impl UnsafeUnpin for LoadProgress
impl UnwindSafe for LoadProgress
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