[−][src]Struct esp8266_hal::gpio::Gpio10
Pin
Implementations
impl<MODE> Gpio10<Input<MODE>>[src]
pub fn set_interrupt_mode(&mut self, mode: InterruptMode)[src]
pub fn clear_interrupt(&mut self)[src]
pub fn interrupt_status(&mut self) -> bool[src]
impl<MODE> Gpio10<MODE>[src]
pub unsafe fn unsafe_info<T>(self) -> Gpio10<T>[src]
Change the pin into a specific mode without doing any of the pin configuration
This should only be used if you know the pin is already configured correctly
pub fn into_push_pull_output(self) -> Gpio10<Output<PushPull>>[src]
pub fn into_open_drain_output(self) -> Gpio10<Output<OpenDrain>>[src]
pub fn into_floating_input(self) -> Gpio10<Input<Floating>>[src]
pub fn into_pull_up_input(self) -> Gpio10<Input<PullUp>>[src]
impl<MODE> Gpio10<MODE>[src]
impl<MODE> Gpio10<MODE>[src]
Trait Implementations
impl<MODE> Default for Gpio10<Output<MODE>>[src]
impl<MODE> InputPin for Gpio10<Input<MODE>>[src]
type Error = Infallible
Error type
fn is_high(&self) -> Result<bool, Self::Error>[src]
fn is_low(&self) -> Result<bool, Self::Error>[src]
impl InputPin for Gpio10<Output<OpenDrain>>[src]
type Error = Infallible
Error type
fn is_high(&self) -> Result<bool, Self::Error>[src]
fn is_low(&self) -> Result<bool, Self::Error>[src]
impl<MODE> OutputPin for Gpio10<Output<MODE>>[src]
type Error = Infallible
Error type
fn set_high(&mut self) -> Result<(), Self::Error>[src]
fn set_low(&mut self) -> Result<(), Self::Error>[src]
impl<MODE> StatefulOutputPin for Gpio10<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 Gpio10<MODE> where
MODE: Send,
MODE: Send,
impl<MODE> Sync for Gpio10<MODE> where
MODE: Sync,
MODE: Sync,
impl<MODE> Unpin for Gpio10<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> Default for T where
T: Default, [src]
T: Default,
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> 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>,