pub trait DisabledConfig: Sealed {
    const DYN: DynDisabled;
}
Expand description

Type-level enum for disabled configurations

The valid options are Floating, PullDown and PullUp. See the type-level enum documentation for more details on the pattern.

Required Associated Constants§

source

const DYN: DynDisabled

Corresponding DynDisabled

Implementors§

source§

impl DisabledConfig for Floating

source§

const DYN: DynDisabled = DynDisabled::Floating

source§

impl DisabledConfig for PullDown

source§

const DYN: DynDisabled = DynDisabled::PullDown

source§

impl DisabledConfig for PullUp

source§

const DYN: DynDisabled = DynDisabled::PullUp