pub struct ComplementaryPwmPin<'d, T, C> { /* private fields */ }
Expand description
Complementary PWM pin wrapper.
This wraps a pin to make it usable with PWM.
Implementations§
Source§impl<'d, T: AdvancedInstance4Channel, C: TimerChannel> ComplementaryPwmPin<'d, T, C>
impl<'d, T: AdvancedInstance4Channel, C: TimerChannel> ComplementaryPwmPin<'d, T, C>
Sourcepub fn new(
pin: Peri<'d, impl TimerComplementaryPin<T, C>>,
output_type: OutputType,
) -> Self
pub fn new( pin: Peri<'d, impl TimerComplementaryPin<T, C>>, output_type: OutputType, ) -> Self
Create a new complementary PWM pin instance.
Auto Trait Implementations§
impl<'d, T, C> Freeze for ComplementaryPwmPin<'d, T, C>
impl<'d, T, C> RefUnwindSafe for ComplementaryPwmPin<'d, T, C>where
T: RefUnwindSafe,
C: RefUnwindSafe,
impl<'d, T, C> Send for ComplementaryPwmPin<'d, T, C>
impl<'d, T, C> Sync for ComplementaryPwmPin<'d, T, C>
impl<'d, T, C> Unpin for ComplementaryPwmPin<'d, T, C>
impl<'d, T, C> !UnwindSafe for ComplementaryPwmPin<'d, T, C>
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