PeripheralRef

Trait PeripheralRef 

Source
pub trait PeripheralRef {
    // Required methods
    fn take() -> Option<&'static mut Self>
       where Self: Sized;
    unsafe fn steal() -> &'static mut Self;
}

Required Methods§

Source

fn take() -> Option<&'static mut Self>
where Self: Sized,

Source

unsafe fn steal() -> &'static mut Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§