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>
 
impl<T: Timer16> Timer16Setup<T>
pub fn new() -> Self
pub fn clock_source(self, source: ClockSource) -> Self
pub fn waveform_generation_mode(self, mode: WaveformGenerationMode) -> Self
pub fn output_compare_1(self, value: Option<u16>) -> Self
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,
 
impl<T> Any for Twhere
    T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
    T: ?Sized,
 
impl<T> Borrow<T> for Twhere
    T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more