pub struct MemoryRegistryInitSummary {
pub ranges: Vec<(String, MemoryRange)>,
pub entries: Vec<(u8, MemoryRegistryEntry)>,
}Expand description
MemoryRegistryInitSummary
Substrate-level summary of registry state after initialization. This is intended for diagnostics and testing only. It is NOT a stable API contract or external view.
Fields§
§ranges: Vec<(String, MemoryRange)>§entries: Vec<(u8, MemoryRegistryEntry)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemoryRegistryInitSummary
impl RefUnwindSafe for MemoryRegistryInitSummary
impl Send for MemoryRegistryInitSummary
impl Sync for MemoryRegistryInitSummary
impl Unpin for MemoryRegistryInitSummary
impl UnwindSafe for MemoryRegistryInitSummary
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