Skip to main content

OutputChannel

Trait OutputChannel 

Source
pub trait OutputChannel: Sealed { }
Expand description

Marker trait for dedicated GPIO output channels.

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.

Implementors§

Source§

impl<const CH: u8> OutputChannel for &mut DedicatedGpioChannel<'_, CH>

Available on crate feature unstable only.
Source§

impl<const CH: u8> OutputChannel for &mut DedicatedGpioOutputChannel<'_, CH>

Available on crate feature unstable only.
Source§

impl<const CH: u8> OutputChannel for DedicatedGpioChannel<'_, CH>

Available on crate feature unstable only.
Source§

impl<const CH: u8> OutputChannel for DedicatedGpioOutputChannel<'_, CH>

Available on crate feature unstable only.