atsamd_hal::gpio::pin

Trait OutputConfig

Source
pub trait OutputConfig: Sealed {
    const DYN: DynOutput;
}
Expand description

Type-level enum for output configurations

The valid options are PushPull and Readable. See the type-level enum documentation for more details on the pattern.

Required Associated Constants§

Source

const DYN: DynOutput

Corresponding DynOutput

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 OutputConfig for PushPull

Source§

const DYN: DynOutput = DynOutput::PushPull

Source§

impl OutputConfig for Readable

Source§

const DYN: DynOutput = DynOutput::Readable