Enum imxrt_iomuxc::Speed[][src]

#[repr(u32)]
pub enum Speed {
    Low,
    Medium,
    Fast,
    Max,
}

Sets electrical characteristics of a pin in a given frequency range

Speed is a selectable bit field that sets electrical characteristics of a pin in a given frequency range. This field provides additional 2-bit slew rate control. These options can either increase the output driver current in the higher frequency range, or reduce the switching noise in the lower frequency range.

The operational frequency on GPIO pads is dependent on slew rate (SRE), speed (SPEED), and supply voltage (OVDD).

See Operating Frequency table in the GPIO block guide in the reference manual for more details.

Variants

Low
Medium
Fast
Max

Trait Implementations

impl Clone for Speed[src]

impl Copy for Speed[src]

impl Debug for Speed[src]

impl Eq for Speed[src]

impl PartialEq<Speed> for Speed[src]

impl StructuralEq for Speed[src]

impl StructuralPartialEq for Speed[src]

Auto Trait Implementations

impl Send for Speed

impl Sync for Speed

impl Unpin for Speed

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.