#[repr(C)]pub struct nrf_modem_at_cmd_custom {
pub cmd: *const c_char,
pub callback: nrf_modem_at_cmd_custom_handler_t,
pub cmd_strlen: usize,
}Expand description
Custom AT command.
Application-defined AT command implementation.
Fields§
§cmd: *const c_charThe AT command to implement.
callback: nrf_modem_at_cmd_custom_handler_tThe function implementing the AT command.
cmd_strlen: usizeFilter len
Trait Implementations§
Source§impl Clone for nrf_modem_at_cmd_custom
impl Clone for nrf_modem_at_cmd_custom
Source§fn clone(&self) -> nrf_modem_at_cmd_custom
fn clone(&self) -> nrf_modem_at_cmd_custom
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for nrf_modem_at_cmd_custom
impl Debug for nrf_modem_at_cmd_custom
impl Copy for nrf_modem_at_cmd_custom
Auto Trait Implementations§
impl Freeze for nrf_modem_at_cmd_custom
impl RefUnwindSafe for nrf_modem_at_cmd_custom
impl !Send for nrf_modem_at_cmd_custom
impl !Sync for nrf_modem_at_cmd_custom
impl Unpin for nrf_modem_at_cmd_custom
impl UnwindSafe for nrf_modem_at_cmd_custom
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