pub struct AssetLoadDiagnosticsSnapshot {
pub total_requests: u64,
pub bytes_requests: u64,
pub reference_requests: u64,
pub missing_bundle_asset_requests: u64,
pub stale_manifest_requests: u64,
pub io_requests: u64,
pub unsupported_file_requests: u64,
pub unsupported_url_requests: u64,
pub external_reference_unavailable_requests: u64,
pub revision_change_requests: u64,
pub recent: Vec<AssetLoadDiagnosticEvent>,
}Fields§
§total_requests: u64§bytes_requests: u64§reference_requests: u64§missing_bundle_asset_requests: u64§stale_manifest_requests: u64§io_requests: u64§unsupported_file_requests: u64§unsupported_url_requests: u64§revision_change_requests: u64§recent: Vec<AssetLoadDiagnosticEvent>Trait Implementations§
Source§impl Clone for AssetLoadDiagnosticsSnapshot
impl Clone for AssetLoadDiagnosticsSnapshot
Source§fn clone(&self) -> AssetLoadDiagnosticsSnapshot
fn clone(&self) -> AssetLoadDiagnosticsSnapshot
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 moreSource§impl Debug for AssetLoadDiagnosticsSnapshot
impl Debug for AssetLoadDiagnosticsSnapshot
Source§impl Default for AssetLoadDiagnosticsSnapshot
impl Default for AssetLoadDiagnosticsSnapshot
Source§fn default() -> AssetLoadDiagnosticsSnapshot
fn default() -> AssetLoadDiagnosticsSnapshot
Returns the “default value” for a type. Read more
Source§impl PartialEq for AssetLoadDiagnosticsSnapshot
impl PartialEq for AssetLoadDiagnosticsSnapshot
Source§fn eq(&self, other: &AssetLoadDiagnosticsSnapshot) -> bool
fn eq(&self, other: &AssetLoadDiagnosticsSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AssetLoadDiagnosticsSnapshot
impl StructuralPartialEq for AssetLoadDiagnosticsSnapshot
Auto Trait Implementations§
impl Freeze for AssetLoadDiagnosticsSnapshot
impl RefUnwindSafe for AssetLoadDiagnosticsSnapshot
impl Send for AssetLoadDiagnosticsSnapshot
impl Sync for AssetLoadDiagnosticsSnapshot
impl Unpin for AssetLoadDiagnosticsSnapshot
impl UnsafeUnpin for AssetLoadDiagnosticsSnapshot
impl UnwindSafe for AssetLoadDiagnosticsSnapshot
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