[−][src]Struct stm32f3xx_hal::gpio::gpiod::PDx
Partially erased pin
Methods
impl<MODE> PDx<MODE>[src]
pub fn downgrade(self) -> PXx<MODE>[src]
Erases the port letter 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 PDx<Output<MODE>>[src]
impl<MODE> InputPin for PDx<Input<MODE>>[src]
type Error = ()
Error type
fn is_high(&self) -> Result<bool, Self::Error>[src]
fn is_low(&self) -> Result<bool, Self::Error>[src]
impl<MODE> OutputPin for PDx<Output<MODE>>[src]
type Error = ()
Error type
fn set_high(&mut self) -> Result<(), Self::Error>[src]
fn set_low(&mut self) -> Result<(), Self::Error>[src]
impl<MODE> StatefulOutputPin for PDx<Output<MODE>>[src]
fn is_set_high(&self) -> Result<bool, Self::Error>[src]
fn is_set_low(&self) -> Result<bool, Self::Error>[src]
Auto Trait Implementations
impl<MODE> Send for PDx<MODE> where
MODE: Send,
MODE: Send,
impl<MODE> Sync for PDx<MODE> where
MODE: Sync,
MODE: Sync,
impl<MODE> Unpin for PDx<MODE> where
MODE: Unpin,
MODE: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> InputPin for T where
T: InputPin, [src]
T: InputPin,
type Error = ()
Error type
fn is_low(&self) -> Result<bool, <T as InputPin>::Error>[src]
fn is_high(&self) -> Result<bool, <T as InputPin>::Error>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> OutputPin for T where
T: OutputPin, [src]
T: OutputPin,
type Error = ()
Error type
fn set_low(&mut self) -> Result<(), <T as OutputPin>::Error>[src]
fn set_high(&mut self) -> Result<(), <T as OutputPin>::Error>[src]
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> StatefulOutputPin for T where
T: StatefulOutputPin + OutputPin, [src]
T: StatefulOutputPin + OutputPin,
fn is_set_low(&self) -> Result<bool, <T as OutputPin>::Error>[src]
fn is_set_high(&self) -> Result<bool, <T as OutputPin>::Error>[src]
impl<P> ToggleableOutputPin for P where
P: Default, [src]
P: Default,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,