[][src]Struct stm32f1xx_hal::time::MegaHertz

pub struct MegaHertz(pub u32);

Megahertz

Create a frequency specified in megahertz.

See also Hertz and KiloHertz for semantically correct ways of creating lower frequencies.

Examples

Create a an 8 MHz frequency

This example creates an 8 MHz frequency that could be used to configure an SPI peripheral, etc.

use stm32f1xx_hal::time::Hertz;

let freq = 8.mhz();

Trait Implementations

impl Clone for MegaHertz[src]

impl Copy for MegaHertz[src]

impl Debug for MegaHertz[src]

impl Div<MegaHertz> for MegaHertz[src]

type Output = u32

The resulting type after applying the / operator.

impl Div<u32> for MegaHertz[src]

type Output = Self

The resulting type after applying the / operator.

impl DivAssign<u32> for MegaHertz[src]

impl From<MegaHertz> for Hertz[src]

impl From<MegaHertz> for KiloHertz[src]

impl Mul<u32> for MegaHertz[src]

type Output = Self

The resulting type after applying the * operator.

impl MulAssign<u32> for MegaHertz[src]

impl PartialEq<MegaHertz> for MegaHertz[src]

impl StructuralPartialEq for MegaHertz[src]

Auto Trait Implementations

impl Send for MegaHertz

impl Sync for MegaHertz

impl Unpin for MegaHertz

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

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.