PllOutputFrequency

Enum PllOutputFrequency 

Source
pub enum PllOutputFrequency {
Show 15 variants _80_00mhz = 0, _66_67mhz = 2, _50_00mhz = 3, _40_00mhz = 4, _33_33mhz = 5, _28_57mhz = 6, _25mhz = 7, _22_22mhz = 8, _20mhz = 9, _18_18mhz = 10, _16_67mhz = 11, _15_38mhz = 12, _14_29mhz = 13, _13_33mhz = 14, _12_5mhz = 15,
}
Expand description

Selects what to divide the PLL’s 400MHz down to.

Variants§

§

_80_00mhz = 0

80.00 MHz

§

_66_67mhz = 2

66.67 MHz

§

_50_00mhz = 3

50 MHz

§

_40_00mhz = 4

40 MHz

§

_33_33mhz = 5

33.33 MHz

§

_28_57mhz = 6

28.57 MHz

§

_25mhz = 7

25 MHz

§

_22_22mhz = 8

22.22 MHz

§

_20mhz = 9

20 MHz

§

_18_18mhz = 10

18.18 MHz

§

_16_67mhz = 11

16.67 MHz

§

_15_38mhz = 12

15.38 MHz

§

_14_29mhz = 13

14.29 MHz

§

_13_33mhz = 14

13.33 MHz

§

_12_5mhz = 15

12.5 MHz

Trait Implementations§

Source§

impl Clone for PllOutputFrequency

Source§

fn clone(&self) -> PllOutputFrequency

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Into<Hertz> for PllOutputFrequency

Source§

fn into(self) -> Hertz

Converts this type into the (usually inferred) input type.
Source§

impl Copy for PllOutputFrequency

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.