pub trait Pins<REMAP, P> {
type Channels;
const C1: bool = false;
const C2: bool = false;
const C3: bool = false;
const C4: bool = false;
// Required method
fn split() -> Self::Channels;
// Provided method
fn check_used(c: Channel) -> Channel { ... }
}
Provided Associated Constants§
const C1: bool = false
const C2: bool = false
const C3: bool = false
const C4: bool = false
Required Associated Types§
Required Methods§
Provided Methods§
fn check_used(c: Channel) -> Channel
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.