Enum imxrt_iomuxc::OpenDrain[][src]

#[repr(u32)]
pub enum OpenDrain {
    Enabled,
    Disabled,
}

Open Drain Enable Field

If enabled, the output driver drives only logic 0. The drain of the internal transistor is open. It means that logic 1 has to be driven by an external component. This option is essential if connection between the pad and an external component is bi-directional. If disabled, then the output driver drives logic 1 and logic 0.

Variants

Enabled
Disabled

Trait Implementations

impl Clone for OpenDrain[src]

impl Copy for OpenDrain[src]

impl Debug for OpenDrain[src]

impl Eq for OpenDrain[src]

impl PartialEq<OpenDrain> for OpenDrain[src]

impl StructuralEq for OpenDrain[src]

impl StructuralPartialEq for OpenDrain[src]

Auto Trait Implementations

impl Send for OpenDrain

impl Sync for OpenDrain

impl Unpin for OpenDrain

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.