#[repr(C)]pub struct IMemoryStoreBase {
pub vtable: *const IMemoryStoreBaseVtbl,
}
Expand description
Base memory store interface with virtual functions.
Fields§
§vtable: *const IMemoryStoreBaseVtbl
Implementations§
Source§impl IMemoryStoreBase
impl IMemoryStoreBase
Sourcepub const RTTI: VariantID = RTTI_IMemoryStoreBase
pub const RTTI: VariantID = RTTI_IMemoryStoreBase
Address & Offset of the runtime type information (RTTI) identifier.
Sourcepub const VTABLE: [VariantID; 1] = VTABLE_IMemoryStoreBase
pub const VTABLE: [VariantID; 1] = VTABLE_IMemoryStoreBase
Address & Offset of the virtual function table.
pub const fn new() -> Self
Sourcepub fn get_memory_stats(&mut self, stats: &mut MemoryStats)
pub fn get_memory_stats(&mut self, stats: &mut MemoryStats)
Get memory statistics.
Sourcepub fn contains_block_impl(&self, block: *const u8) -> bool
pub fn contains_block_impl(&self, block: *const u8) -> bool
Check if the block is contained in the memory store.
Trait Implementations§
Source§impl Clone for IMemoryStoreBase
impl Clone for IMemoryStoreBase
Source§fn clone(&self) -> IMemoryStoreBase
fn clone(&self) -> IMemoryStoreBase
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 IMemoryStoreBase
impl Debug for IMemoryStoreBase
Source§impl Default for IMemoryStoreBase
impl Default for IMemoryStoreBase
Source§impl PartialEq for IMemoryStoreBase
impl PartialEq for IMemoryStoreBase
impl StructuralPartialEq for IMemoryStoreBase
Auto Trait Implementations§
impl Freeze for IMemoryStoreBase
impl RefUnwindSafe for IMemoryStoreBase
impl !Send for IMemoryStoreBase
impl !Sync for IMemoryStoreBase
impl Unpin for IMemoryStoreBase
impl UnwindSafe for IMemoryStoreBase
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