pub struct OptionalMemory {
pub memory_type: MemoryType,
pub location: MemoryLocation,
pub link_name: &'static str,
pub start_address: usize,
pub size: Byte,
}Expand description
Definition of optional memory sections that go beyond the default of SRAM and flash.
Fields§
§memory_type: MemoryTypeType of memory.
location: MemoryLocationLocation of the memory.
link_name: &'static strName in the linker file.
start_address: usizeLowest address of the section.
size: ByteMemory size.
Auto Trait Implementations§
impl Freeze for OptionalMemory
impl RefUnwindSafe for OptionalMemory
impl Send for OptionalMemory
impl Sync for OptionalMemory
impl Unpin for OptionalMemory
impl UnwindSafe for OptionalMemory
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