pub trait IsConnected {
const IS_CONNECTED: bool = true;
// Provided method
fn is_connected(&self) -> bool { ... }
}Expand description
Indicates whether a Mapped pin is connected to a physical pin or to a NoPin
Provided Associated Constants§
Sourceconst IS_CONNECTED: bool = true
const IS_CONNECTED: bool = true
true if connected to a physical pin
Provided Methods§
fn is_connected(&self) -> bool
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.