pub struct OutputConnection(/* private fields */);Expand description
A peripheral (input and) output signal connection.
This is mainly intended for internal use, but it can be used to connect peripherals within the MCU without external hardware.
Trait Implementations§
Source§impl From<Level> for OutputConnection
impl From<Level> for OutputConnection
Source§impl From<NoPin> for OutputConnection
impl From<NoPin> for OutputConnection
Source§impl From<OutputConnection> for InputConnection
impl From<OutputConnection> for InputConnection
Source§fn from(conn: OutputConnection) -> Self
fn from(conn: OutputConnection) -> Self
Converts to this type from the input type.
Source§impl From<OutputSignal> for OutputConnection
impl From<OutputSignal> for OutputConnection
Source§fn from(signal: OutputSignal) -> Self
fn from(signal: OutputSignal) -> Self
Converts to this type from the input type.
Source§impl<P> From<P> for OutputConnectionwhere
P: OutputPin,
impl<P> From<P> for OutputConnectionwhere
P: OutputPin,
Source§impl Peripheral for OutputConnection
impl Peripheral for OutputConnection
Source§type P = OutputConnection
type P = OutputConnection
Peripheral singleton type
Source§unsafe fn clone_unchecked(&self) -> Self::P
unsafe fn clone_unchecked(&self) -> Self::P
Unsafely clone (duplicate) a peripheral singleton. Read more
impl PeripheralInput for OutputConnection
impl PeripheralOutput for OutputConnection
Auto Trait Implementations§
impl Freeze for OutputConnection
impl RefUnwindSafe for OutputConnection
impl Send for OutputConnection
impl Sync for OutputConnection
impl Unpin for OutputConnection
impl UnwindSafe for OutputConnection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more