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