pub enum PwmChannels<P1, P2> {
None,
Single(P1),
Dual(P1, P2),
}Variants§
Auto Trait Implementations§
impl<P1, P2> Freeze for PwmChannels<P1, P2>
impl<P1, P2> RefUnwindSafe for PwmChannels<P1, P2>where
P1: RefUnwindSafe,
P2: RefUnwindSafe,
impl<P1, P2> Send for PwmChannels<P1, P2>
impl<P1, P2> Sync for PwmChannels<P1, P2>
impl<P1, P2> Unpin for PwmChannels<P1, P2>
impl<P1, P2> UnsafeUnpin for PwmChannels<P1, P2>where
P1: UnsafeUnpin,
P2: UnsafeUnpin,
impl<P1, P2> UnwindSafe for PwmChannels<P1, P2>where
P1: UnwindSafe,
P2: UnwindSafe,
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