#[non_exhaustive]pub struct WorldUsage {
pub world: ValidatedWorldPath,
pub bytes: usize,
}Expand description
One world-size row for engine introspection.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.world: ValidatedWorldPathCanonical world path.
bytes: usizeBody byte size for this world.
Auto Trait Implementations§
impl Freeze for WorldUsage
impl RefUnwindSafe for WorldUsage
impl Send for WorldUsage
impl Sync for WorldUsage
impl Unpin for WorldUsage
impl UnsafeUnpin for WorldUsage
impl UnwindSafe for WorldUsage
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