pub struct LoaderStatistics {
pub bundle_count: usize,
pub total_size: usize,
pub total_assets: usize,
pub total_files: usize,
pub average_bundle_size: usize,
}Expand description
Loader statistics
Fields§
§bundle_count: usize§total_size: usize§total_assets: usize§total_files: usize§average_bundle_size: usizeTrait Implementations§
Source§impl Clone for LoaderStatistics
impl Clone for LoaderStatistics
Source§fn clone(&self) -> LoaderStatistics
fn clone(&self) -> LoaderStatistics
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 LoaderStatistics
impl RefUnwindSafe for LoaderStatistics
impl Send for LoaderStatistics
impl Sync for LoaderStatistics
impl Unpin for LoaderStatistics
impl UnwindSafe for LoaderStatistics
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