pub trait Instance:
Peripheral<P = Self>
+ Into<AnyUart>
+ 'static {
// Required method
fn parts(&self) -> (&'static Info, &'static State);
// Provided methods
fn info(&self) -> &'static Info { ... }
fn state(&self) -> &'static State { ... }
}Expand description
UART Peripheral Instance
Required Methods§
Provided Methods§
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.