pub trait Pin:
Peripheral<P = Self>
+ Into<AnyPin>
+ SealedPin
+ Sized
+ 'static {
// Provided methods
fn pin(&self) -> u8 { ... }
fn port(&self) -> Port { ... }
fn psel_bits(&self) -> Psel { ... }
fn degrade(self) -> AnyPin { ... }
}
Expand description
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.