#[repr(C)]pub struct i2c_master_event_callbacks_t {
pub on_trans_done: i2c_master_callback_t,
}
Expand description
@brief Group of I2C master callbacks, can be used to get status during transaction or doing other small things. But take care 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_trans_done: i2c_master_callback_t
< I2C master transaction finish callback
Trait Implementations§
source§impl Clone for i2c_master_event_callbacks_t
impl Clone for i2c_master_event_callbacks_t
source§fn clone(&self) -> i2c_master_event_callbacks_t
fn clone(&self) -> i2c_master_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_master_event_callbacks_t
impl Debug for i2c_master_event_callbacks_t
source§impl Default for i2c_master_event_callbacks_t
impl Default for i2c_master_event_callbacks_t
source§fn default() -> i2c_master_event_callbacks_t
fn default() -> i2c_master_event_callbacks_t
Returns the “default value” for a type. Read more
impl Copy for i2c_master_event_callbacks_t
Auto Trait Implementations§
impl Freeze for i2c_master_event_callbacks_t
impl RefUnwindSafe for i2c_master_event_callbacks_t
impl Send for i2c_master_event_callbacks_t
impl Sync for i2c_master_event_callbacks_t
impl Unpin for i2c_master_event_callbacks_t
impl UnwindSafe for i2c_master_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
)