esp-idf-svc 0.45.0

Implementation of the embedded-svc traits for ESP-IDF (Espressif's IoT Development Framework)
use core::cell::UnsafeCell;

pub struct Newtype<T>(pub T);

pub struct UnsafeCellSendSync<T>(pub UnsafeCell<T>);

unsafe impl<T> Send for UnsafeCellSendSync<T> {}
unsafe impl<T> Sync for UnsafeCellSendSync<T> {}