pub enum Vsync {
PB7(PB7<Alternate<13, PushPull>>),
PG9(PG9<Alternate<13, PushPull>>),
PI5(PI5<Alternate<13, PushPull>>),
}
Variants§
PB7(PB7<Alternate<13, PushPull>>)
PG9(PG9<Alternate<13, PushPull>>)
PI5(PI5<Alternate<13, PushPull>>)
Trait Implementations§
Source§impl ExtiPin for Vsync
impl ExtiPin for Vsync
Source§fn make_interrupt_source(&mut self, _syscfg: &mut SysCfg)
fn make_interrupt_source(&mut self, _syscfg: &mut SysCfg)
Make corresponding EXTI line sensitive to this pin
Source§fn trigger_on_edge(&mut self, _exti: &mut EXTI, _level: Edge)
fn trigger_on_edge(&mut self, _exti: &mut EXTI, _level: Edge)
Generate interrupt on rising edge, falling edge or both
Source§fn enable_interrupt(&mut self, _exti: &mut EXTI)
fn enable_interrupt(&mut self, _exti: &mut EXTI)
Enable external interrupts from this pin.
Source§fn disable_interrupt(&mut self, _exti: &mut EXTI)
fn disable_interrupt(&mut self, _exti: &mut EXTI)
Disable external interrupts from this pin
Source§fn clear_interrupt_pending_bit(&mut self)
fn clear_interrupt_pending_bit(&mut self)
Clear the interrupt pending bit for this pin
Source§fn check_interrupt(&self) -> bool
fn check_interrupt(&self) -> bool
Reads the interrupt pending bit for this pin
Source§impl PinPull for Vsync
impl PinPull for Vsync
Source§fn set_internal_resistor(&mut self, _pull: Pull)
fn set_internal_resistor(&mut self, _pull: Pull)
Set the internal pull-up and pull-down resistor
fn internal_resistor(self, resistor: Pull) -> Self
Auto Trait Implementations§
impl Freeze for Vsync
impl RefUnwindSafe for Vsync
impl Send for Vsync
impl Sync for Vsync
impl Unpin for Vsync
impl UnwindSafe for Vsync
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