[][src]Struct alt_stm32f30x_hal::gpio::PBx

pub struct PBx<PT: PullType, PM: PinMode> { /* fields omitted */ }

Partially erased pin

Trait Implementations

impl<PT: PullType> InputPin for PBx<PT, Input>[src]

impl<PT: PullType, OT: OutputType, OS: OutputSpeed> OutputPin for PBx<PT, Output<OT, OS>>[src]

impl<PT: PullType, AN: AltFnNum, OT: OutputType, OS: OutputSpeed> OutputPin for PBx<PT, AltFn<AN, OT, OS>>[src]

Auto Trait Implementations

impl<PT, PM> Send for PBx<PT, PM> where
    PM: Send,
    PT: Send
[src]

impl<PT, PM> Sync for PBx<PT, PM> where
    PM: Sync,
    PT: Sync
[src]

impl<PT, PM> Unpin for PBx<PT, PM> where
    PM: Unpin,
    PT: Unpin
[src]

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, 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.