Enum Speed

Source
pub enum Speed {
Show 15 variants Mhz125_0, Mhz62_5, Mhz31_2, Mhz15_6, Mhz7_8, Mhz3_9, Khz1953, Khz976, Khz488, Khz244, Khz122, Khz61, Khz30_5, Khz15_2, Hz7629,
}
Expand description

From https://www.raspberrypi.org/documentation/hardware/raspberrypi/spi/README.md#driver
Possible Speeds:
125.0 MHz
62.5 MHz
31.2 MHz
15.6 MHz
7.8 MHz
3.9 MHz
1953 kHz
976 kHz
488 kHz
244 kHz
122 kHz
61 kHz
30.5 kHz
15.2 kHz
7629 Hz

Variants§

§

Mhz125_0

§

Mhz62_5

§

Mhz31_2

§

Mhz15_6

§

Mhz7_8

§

Mhz3_9

§

Khz1953

§

Khz976

§

Khz488

§

Khz244

§

Khz122

§

Khz61

§

Khz30_5

§

Khz15_2

§

Hz7629

Trait Implementations§

Source§

impl Debug for Speed

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Speed

Source§

fn eq(&self, other: &Speed) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for Speed

Auto Trait Implementations§

§

impl Freeze for Speed

§

impl RefUnwindSafe for Speed

§

impl Send for Speed

§

impl Sync for Speed

§

impl Unpin for Speed

§

impl UnwindSafe for Speed

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.