Struct esp_idf_sys::i2c_slave_event_callbacks_t
source · #[repr(C)]pub struct i2c_slave_event_callbacks_t {
pub on_stretch_occur: i2c_slave_stretch_callback_t,
pub on_recv_done: i2c_slave_received_callback_t,
}
Expand description
@brief Group of I2C slave callbacks (e.g. get i2c slave stretch cause). But take care of potential concurrency issues. @note The callbacks are all running under ISR context @note When CONFIG_I2C_ISR_IRAM_SAFE is enabled, the callback itself and functions called by it should be placed in IRAM. The variables used in the function should be in the SRAM as well.
Fields§
§on_stretch_occur: i2c_slave_stretch_callback_t
< I2C slave stretched callback
on_recv_done: i2c_slave_received_callback_t
< I2C slave receive done callback
Trait Implementations§
source§impl Clone for i2c_slave_event_callbacks_t
impl Clone for i2c_slave_event_callbacks_t
source§fn clone(&self) -> i2c_slave_event_callbacks_t
fn clone(&self) -> i2c_slave_event_callbacks_t
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for i2c_slave_event_callbacks_t
impl Debug for i2c_slave_event_callbacks_t
source§impl Default for i2c_slave_event_callbacks_t
impl Default for i2c_slave_event_callbacks_t
source§fn default() -> i2c_slave_event_callbacks_t
fn default() -> i2c_slave_event_callbacks_t
Returns the “default value” for a type. Read more
impl Copy for i2c_slave_event_callbacks_t
Auto Trait Implementations§
impl Freeze for i2c_slave_event_callbacks_t
impl RefUnwindSafe for i2c_slave_event_callbacks_t
impl Send for i2c_slave_event_callbacks_t
impl Sync for i2c_slave_event_callbacks_t
impl Unpin for i2c_slave_event_callbacks_t
impl UnwindSafe for i2c_slave_event_callbacks_t
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)