[][src]Struct nrf_softdevice_s113::sd_mbr_command_t

#[repr(C)]pub struct sd_mbr_command_t {
    pub command: u32,
    pub params: sd_mbr_command_t__bindgen_ty_1,
}

@brief Input structure containing data used when calling ::sd_mbr_command

Depending on what command value that is set, the corresponding params value type must also be set. See @ref NRF_MBR_COMMANDS for command types and corresponding params value type. If command @ref SD_MBR_COMMAND_INIT_SD is set, it is not necessary to set any values under params.

Fields

command: u32

< Type of command to be issued. See @ref NRF_MBR_COMMANDS.

params: sd_mbr_command_t__bindgen_ty_1

< Command parameters.

Trait Implementations

impl Clone for sd_mbr_command_t[src]

impl Copy for sd_mbr_command_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.