pub struct AssetStatistics {
pub object_count: usize,
pub type_count: usize,
pub external_count: usize,
pub file_size: u64,
pub unity_version: String,
pub format_version: u32,
}Expand description
Quick asset statistics
Fields§
§object_count: usize§type_count: usize§external_count: usize§file_size: u64§unity_version: String§format_version: u32Trait Implementations§
Source§impl Clone for AssetStatistics
impl Clone for AssetStatistics
Source§fn clone(&self) -> AssetStatistics
fn clone(&self) -> AssetStatistics
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 AssetStatistics
impl RefUnwindSafe for AssetStatistics
impl Send for AssetStatistics
impl Sync for AssetStatistics
impl Unpin for AssetStatistics
impl UnwindSafe for AssetStatistics
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