[][src]Struct nrf_softdevice_s132::sd_mbr_command_copy_sd_t

#[repr(C)]pub struct sd_mbr_command_copy_sd_t {
    pub src: *mut u32,
    pub dst: *mut u32,
    pub len: u32,
}

@brief This command copies part of a new SoftDevice

The destination area is erased before copying. If dst is in the middle of a flash page, that whole flash page will be erased. If (dst+len) is in the middle of a flash page, that whole flash page will be erased.

The user of this function is responsible for setting the BPROT registers.

@retval ::NRF_SUCCESS indicates that the contents of the memory blocks where copied correctly. @retval ::NRF_ERROR_INTERNAL indicates that the contents of the memory blocks where not verified correctly after copying.

Fields

src: *mut u32

< Pointer to the source of data to be copied.

dst: *mut u32

< Pointer to the destination where the content is to be copied.

len: u32

< Number of 32 bit words to copy. Must be a multiple of @ref MBR_PAGE_SIZE_IN_WORDS words.

Trait Implementations

impl Clone for sd_mbr_command_copy_sd_t[src]

impl Copy for sd_mbr_command_copy_sd_t[src]

impl Debug for sd_mbr_command_copy_sd_t[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.