pub trait PeripheralRef {
// Required methods
fn take() -> Option<&'static mut Self>
where Self: Sized;
unsafe fn steal() -> &'static mut Self;
}
Required Methods§
fn take() -> Option<&'static mut Self>where
Self: Sized,
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.