pub struct MemoryUsage {
pub exclusive: i32,
pub inclusive: i32,
pub sampledata: i32,
}
Fields§
§exclusive: i32
§inclusive: i32
§sampledata: i32
Trait Implementations§
Source§impl Clone for MemoryUsage
impl Clone for MemoryUsage
Source§fn clone(&self) -> MemoryUsage
fn clone(&self) -> MemoryUsage
Returns a copy 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 MemoryUsage
impl Debug for MemoryUsage
Source§impl Into<FMOD_STUDIO_MEMORY_USAGE> for MemoryUsage
impl Into<FMOD_STUDIO_MEMORY_USAGE> for MemoryUsage
Source§fn into(self) -> FMOD_STUDIO_MEMORY_USAGE
fn into(self) -> FMOD_STUDIO_MEMORY_USAGE
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for MemoryUsage
impl RefUnwindSafe for MemoryUsage
impl Send for MemoryUsage
impl Sync for MemoryUsage
impl Unpin for MemoryUsage
impl UnwindSafe for MemoryUsage
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