pub struct ParsingStats {
pub version: u32,
pub unity_version: String,
pub target_platform: i32,
pub file_size: u64,
pub object_count: usize,
pub type_count: usize,
pub script_type_count: usize,
pub external_count: usize,
pub has_type_tree: bool,
pub big_id_enabled: bool,
}Expand description
Parsing statistics
Fields§
§version: u32§unity_version: String§target_platform: i32§file_size: u64§object_count: usize§type_count: usize§script_type_count: usize§external_count: usize§has_type_tree: bool§big_id_enabled: boolTrait Implementations§
Source§impl Clone for ParsingStats
impl Clone for ParsingStats
Source§fn clone(&self) -> ParsingStats
fn clone(&self) -> ParsingStats
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 ParsingStats
impl RefUnwindSafe for ParsingStats
impl Send for ParsingStats
impl Sync for ParsingStats
impl Unpin for ParsingStats
impl UnwindSafe for ParsingStats
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