pub struct Stm32f3xxDefaultPeripherals<'a> {
pub adc1: Adc<'a>,
pub dma: Dma1<'a>,
pub exti: &'a Exti<'a>,
pub flash: Flash,
pub i2c1: I2C<'a>,
pub spi1: Spi<'a>,
pub tim2: Tim2<'a>,
pub usart1: Usart<'a>,
pub usart2: Usart<'a>,
pub usart3: Usart<'a>,
pub gpio_ports: GpioPorts<'a>,
pub watchdog: WindoWdg<'a>,
}
Fields§
§adc1: Adc<'a>
§dma: Dma1<'a>
§exti: &'a Exti<'a>
§flash: Flash
§i2c1: I2C<'a>
§spi1: Spi<'a>
§tim2: Tim2<'a>
§usart1: Usart<'a>
§usart2: Usart<'a>
§usart3: Usart<'a>
§gpio_ports: GpioPorts<'a>
§watchdog: WindoWdg<'a>
Implementations§
Source§impl<'a> Stm32f3xxDefaultPeripherals<'a>
impl<'a> Stm32f3xxDefaultPeripherals<'a>
Trait Implementations§
Source§impl InterruptService for Stm32f3xxDefaultPeripherals<'_>
impl InterruptService for Stm32f3xxDefaultPeripherals<'_>
Source§unsafe fn service_interrupt(&self, interrupt: u32) -> bool
unsafe fn service_interrupt(&self, interrupt: u32) -> bool
Service an interrupt, if supported by this chip. If this interrupt
number is not supported, return false.
Auto Trait Implementations§
impl<'a> !Freeze for Stm32f3xxDefaultPeripherals<'a>
impl<'a> !RefUnwindSafe for Stm32f3xxDefaultPeripherals<'a>
impl<'a> !Send for Stm32f3xxDefaultPeripherals<'a>
impl<'a> !Sync for Stm32f3xxDefaultPeripherals<'a>
impl<'a> Unpin for Stm32f3xxDefaultPeripherals<'a>
impl<'a> !UnwindSafe for Stm32f3xxDefaultPeripherals<'a>
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