[][src]Struct stm32l0xx_hal::gpio::gpioe::PE6

pub struct PE6<MODE> { /* fields omitted */ }

Pin

Methods

impl<MODE> PE6<MODE>[src]

pub const PORT: Port[src]

The port this pin is part of.

pub const PIN_NUMBER: u8[src]

The pin's number inside its port.

pub fn port(&self) -> Port[src]

Returns the port this pin is part of.

pub fn pin_number(&self) -> u8[src]

Returns this pin's number inside its port.

impl<MODE: PinMode> PE6<MODE>[src]

pub fn into_floating_input(self) -> PE6<Input<Floating>>[src]

Configures the pin to operate as a floating input pin.

pub fn with_floating_input<R>(
    &mut self,
    f: impl FnOnce(&mut PE6<Input<Floating>>) -> R
) -> R
[src]

Temporarily configures this pin as a floating input.

The closure f is called with the reconfigured pin. After it returns, the pin will be configured back.

pub fn into_pull_down_input(self) -> PE6<Input<PullDown>>[src]

Configures the pin to operate as a pulled-down input pin.

pub fn with_pull_down_input<R>(
    &mut self,
    f: impl FnOnce(&mut PE6<Input<PullDown>>) -> R
) -> R
[src]

Temporarily configures this pin as a pulled-down input.

The closure f is called with the reconfigured pin. After it returns, the pin will be configured back.

pub fn into_pull_up_input(self) -> PE6<Input<PullUp>>[src]

Configures the pin to operate as a pulled-up input pin.

pub fn with_pull_up_input<R>(
    &mut self,
    f: impl FnOnce(&mut PE6<Input<PullUp>>) -> R
) -> R
[src]

Temporarily configures this pin as a pulled-up input.

The closure f is called with the reconfigured pin. After it returns, the pin will be configured back.

pub fn into_analog(self) -> PE6<Analog>[src]

Configures the pin to operate as an analog pin.

pub fn with_analog<R>(&mut self, f: impl FnOnce(&mut PE6<Analog>) -> R) -> R[src]

Temporarily configures this pin as an analog pin.

The closure f is called with the reconfigured pin. After it returns, the pin will be configured back.

pub fn into_open_drain_output(self) -> PE6<Output<OpenDrain>>[src]

Configures the pin to operate as an open drain output pin.

pub fn with_open_drain_output<R>(
    &mut self,
    f: impl FnOnce(&mut PE6<Output<OpenDrain>>) -> R
) -> R
[src]

Temporarily configures this pin as an open drain output.

The closure f is called with the reconfigured pin. After it returns, the pin will be configured back.

pub fn into_push_pull_output(self) -> PE6<Output<PushPull>>[src]

Configures the pin to operate as an push-pull output pin.

pub fn with_push_pull_output<R>(
    &mut self,
    f: impl FnOnce(&mut PE6<Output<PushPull>>) -> R
) -> R
[src]

Temporarily configures this pin as a push-pull output.

The closure f is called with the reconfigured pin. After it returns, the pin will be configured back.

pub fn set_speed(self, speed: Speed) -> Self[src]

Set pin speed.

impl<MODE> PE6<Output<MODE>>[src]

pub fn downgrade(self) -> PE<Output<MODE>>[src]

Erases the pin number from the type

This is useful when you want to collect the pins into an array where you need all the elements to have the same type

impl<MODE> PE6<Input<MODE>>[src]

pub fn downgrade(self) -> PE<Input<MODE>>[src]

Erases the pin number from the type

This is useful when you want to collect the pins into an array where you need all the elements to have the same type

Trait Implementations

impl<MODE> Default for PE6<Output<MODE>>[src]

impl<MODE> InputPin for PE6<Output<MODE>>[src]

type Error = Void

Error type

impl<MODE> InputPin for PE6<Input<MODE>>[src]

type Error = Void

Error type

impl<MODE> OutputPin for PE6<Output<MODE>>[src]

type Error = Void

Error type

impl<MODE> StatefulOutputPin for PE6<Output<MODE>>[src]

Auto Trait Implementations

impl<MODE> Send for PE6<MODE> where
    MODE: Send

impl<MODE> Sync for PE6<MODE> where
    MODE: Sync

impl<MODE> Unpin for PE6<MODE> where
    MODE: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> InputPin for T where
    T: InputPin
[src]

type Error = ()

Error type

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> OutputPin for T where
    T: OutputPin
[src]

type Error = ()

Error type

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> StatefulOutputPin for T where
    T: StatefulOutputPin + OutputPin
[src]

impl<P> ToggleableOutputPin for P where
    P: Default
[src]

type Error = <P as OutputPin>::Error

Error type

fn toggle(&mut self) -> Result<(), <P as ToggleableOutputPin>::Error>[src]

Toggle pin output

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.