pub struct TimerCounterChannels<TC, CLK1, CLK2, CLK3, const FREQ1: u32, const FREQ2: u32, const FREQ3: u32> {
pub ch0: TimerCounterChannel<TC, CLK1, 0, FREQ1>,
pub ch1: TimerCounterChannel<TC, CLK2, 1, FREQ2>,
pub ch2: TimerCounterChannel<TC, CLK3, 2, FREQ3>,
}Fields§
§ch0: TimerCounterChannel<TC, CLK1, 0, FREQ1>§ch1: TimerCounterChannel<TC, CLK2, 1, FREQ2>§ch2: TimerCounterChannel<TC, CLK3, 2, FREQ3>Auto Trait Implementations§
impl<TC, CLK1, CLK2, CLK3, const FREQ1: u32, const FREQ2: u32, const FREQ3: u32> Freeze for TimerCounterChannels<TC, CLK1, CLK2, CLK3, FREQ1, FREQ2, FREQ3>
impl<TC, CLK1, CLK2, CLK3, const FREQ1: u32, const FREQ2: u32, const FREQ3: u32> RefUnwindSafe for TimerCounterChannels<TC, CLK1, CLK2, CLK3, FREQ1, FREQ2, FREQ3>
impl<TC, CLK1, CLK2, CLK3, const FREQ1: u32, const FREQ2: u32, const FREQ3: u32> Send for TimerCounterChannels<TC, CLK1, CLK2, CLK3, FREQ1, FREQ2, FREQ3>
impl<TC, CLK1, CLK2, CLK3, const FREQ1: u32, const FREQ2: u32, const FREQ3: u32> Sync for TimerCounterChannels<TC, CLK1, CLK2, CLK3, FREQ1, FREQ2, FREQ3>
impl<TC, CLK1, CLK2, CLK3, const FREQ1: u32, const FREQ2: u32, const FREQ3: u32> Unpin for TimerCounterChannels<TC, CLK1, CLK2, CLK3, FREQ1, FREQ2, FREQ3>
impl<TC, CLK1, CLK2, CLK3, const FREQ1: u32, const FREQ2: u32, const FREQ3: u32> UnwindSafe for TimerCounterChannels<TC, CLK1, CLK2, CLK3, FREQ1, FREQ2, FREQ3>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more