pub struct PA11<MODE> { /* private fields */ }
Expand description
Pin
Implementations§
Source§impl<MODE> PA11<MODE>
impl<MODE> PA11<MODE>
Sourcepub fn into_floating_input(self) -> PA11<Input<Floating>>
pub fn into_floating_input(self) -> PA11<Input<Floating>>
Configures the pin to operate as a floating input pin
Sourcepub fn into_pull_down_input(self) -> PA11<Input<PullDown>>
pub fn into_pull_down_input(self) -> PA11<Input<PullDown>>
Configures the pin to operate as a pulled down input pin
Sourcepub fn into_pull_up_input(self) -> PA11<Input<PullUp>>
pub fn into_pull_up_input(self) -> PA11<Input<PullUp>>
Configures the pin to operate as a pulled up input pin
Sourcepub fn into_analog(self) -> PA11<Analog>
pub fn into_analog(self) -> PA11<Analog>
Configures the pin to operate as an analog pin
Sourcepub fn into_open_drain_output(self) -> PA11<Output<OpenDrain>>
pub fn into_open_drain_output(self) -> PA11<Output<OpenDrain>>
Configures the pin to operate as an open drain output pin
Sourcepub fn into_push_pull_output(self) -> PA11<Output<PushPull>>
pub fn into_push_pull_output(self) -> PA11<Output<PushPull>>
Configures the pin to operate as an push pull output pin
Trait Implementations§
Source§impl<MODE> StatefulOutputPin for PA11<Output<MODE>>
impl<MODE> StatefulOutputPin for PA11<Output<MODE>>
impl<MODE> Default for PA11<Output<MODE>>
impl PinMiso<SPI1> for PA11<Input<Floating>>
Auto Trait Implementations§
impl<MODE> Freeze for PA11<MODE>
impl<MODE> RefUnwindSafe for PA11<MODE>where
MODE: RefUnwindSafe,
impl<MODE> Send for PA11<MODE>where
MODE: Send,
impl<MODE> Sync for PA11<MODE>where
MODE: Sync,
impl<MODE> Unpin for PA11<MODE>where
MODE: Unpin,
impl<MODE> UnwindSafe for PA11<MODE>where
MODE: 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