pub struct VectorTable {
pub initial_sp: u32,
pub reset_handler: u32,
pub nmi_handler: Option<u32>,
pub hardfault_handler: Option<u32>,
}Expand description
Cortex-M vector table generator
Fields§
§initial_sp: u32Initial stack pointer value
reset_handler: u32Reset handler address
nmi_handler: Option<u32>NMI handler address (optional, defaults to infinite loop)
hardfault_handler: Option<u32>HardFault handler address (optional, defaults to infinite loop)
Implementations§
Auto Trait Implementations§
impl Freeze for VectorTable
impl RefUnwindSafe for VectorTable
impl Send for VectorTable
impl Sync for VectorTable
impl Unpin for VectorTable
impl UnsafeUnpin for VectorTable
impl UnwindSafe for VectorTable
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