pub trait PinSource: Sealed {
const FROM_NEIGHBOR: bool;
}Expand description
Which transceiver’s serial pins this transceiver’s interface consumes
(CFGR1.CHINSEL). Pins are borrowed from that transceiver’s slot, so
acquire/release live there too (see Drop).
Required Associated Constants§
Sourceconst FROM_NEIGHBOR: bool
const FROM_NEIGHBOR: bool
Consume the next transceiver’s pins instead of this transceiver’s own.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".