Struct rp6::avr::modules::Timer16Setup

source ·
pub struct Timer16Setup<T: Timer16> {
    a: RegisterBits<T::ControlA>,
    b: RegisterBits<T::ControlB>,
    c: RegisterBits<T::ControlC>,
    output_compare_1: Option<u16>,
    _phantom: PhantomData<T>,
}

Fields§

§a: RegisterBits<T::ControlA>§b: RegisterBits<T::ControlB>§c: RegisterBits<T::ControlC>§output_compare_1: Option<u16>§_phantom: PhantomData<T>

Implementations§

source§

impl<T: Timer16> Timer16Setup<T>

source

pub fn new() -> Self

source

pub fn clock_source(self, source: ClockSource) -> Self

source

pub fn waveform_generation_mode(self, mode: WaveformGenerationMode) -> Self

source

pub fn output_compare_1(self, value: Option<u16>) -> Self

source

pub fn configure(self)

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Timer16Setup<T>where
T: RefUnwindSafe,
<T as Timer16>::ControlA: RefUnwindSafe,
<T as Timer16>::ControlB: RefUnwindSafe,
<T as Timer16>::ControlC: RefUnwindSafe,

§

impl<T> Send for Timer16Setup<T>where
T: Send,
<T as Timer16>::ControlA: Send,
<T as Timer16>::ControlB: Send,
<T as Timer16>::ControlC: Send,

§

impl<T> Sync for Timer16Setup<T>where
T: Sync,
<T as Timer16>::ControlA: Sync,
<T as Timer16>::ControlB: Sync,
<T as Timer16>::ControlC: Sync,

§

impl<T> Unpin for Timer16Setup<T>where
T: Unpin,
<T as Timer16>::ControlA: Unpin,
<T as Timer16>::ControlB: Unpin,
<T as Timer16>::ControlC: Unpin,

§

impl<T> UnwindSafe for Timer16Setup<T>where
T: UnwindSafe,
<T as Timer16>::ControlA: UnwindSafe,
<T as Timer16>::ControlB: UnwindSafe,
<T as Timer16>::ControlC: UnwindSafe,

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

const: unstable§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

const: unstable§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

const: unstable§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

const: unstable§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable§

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

Performs the conversion.
§

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

§

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

The type returned in the event of a conversion error.
const: unstable§

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

Performs the conversion.