Struct esp32c2_hal::gpio::AnyPin

source ·
pub struct AnyPin<MODE> { /* private fields */ }

Trait Implementations§

source§

impl<MODE> InputPin for AnyPin<Input<MODE>>

§

type Error = Infallible

Error type
source§

fn is_high(&self) -> Result<bool, <AnyPin<Input<MODE>> as InputPin>::Error>

Is the input pin high?
source§

fn is_low(&self) -> Result<bool, <AnyPin<Input<MODE>> as InputPin>::Error>

Is the input pin low?
source§

impl<MODE> OutputPin for AnyPin<Output<MODE>>

§

type Error = Infallible

Error type
source§

fn set_low(&mut self) -> Result<(), <AnyPin<Output<MODE>> as OutputPin>::Error>

Drives the pin low Read more
source§

fn set_high(&mut self) -> Result<(), <AnyPin<Output<MODE>> as OutputPin>::Error>

Drives the pin high Read more
source§

fn set_state(&mut self, state: PinState) -> Result<(), Self::Error>

Drives the pin high or low depending on the provided value Read more
source§

impl<MODE> StatefulOutputPin for AnyPin<Output<MODE>>

source§

fn is_set_high( &self ) -> Result<bool, <AnyPin<Output<MODE>> as OutputPin>::Error>

Is the pin in drive high mode? Read more
source§

fn is_set_low(&self) -> Result<bool, <AnyPin<Output<MODE>> as OutputPin>::Error>

Is the pin in drive low mode? Read more
source§

impl<MODE> ToggleableOutputPin for AnyPin<Output<MODE>>

§

type Error = Infallible

Error type
source§

fn toggle( &mut self ) -> Result<(), <AnyPin<Output<MODE>> as ToggleableOutputPin>::Error>

Toggle pin output.

Auto Trait Implementations§

§

impl<MODE> RefUnwindSafe for AnyPin<MODE>where MODE: RefUnwindSafe,

§

impl<MODE> Send for AnyPin<MODE>where MODE: Send,

§

impl<MODE> Sync for AnyPin<MODE>where MODE: Sync,

§

impl<MODE> Unpin for AnyPin<MODE>where MODE: Unpin,

§

impl<MODE> UnwindSafe for AnyPin<MODE>where MODE: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.