pub struct Gpio34<MODE> { /* private fields */ }
Implementations
Trait Implementations
sourceimpl<MODE> InputPin for Gpio34<MODE>
impl<MODE> InputPin for Gpio34<MODE>
fn set_to_input(&mut self) -> &mut Self
fn enable_input(&mut self, on: bool) -> &mut Self
fn enable_input_in_sleep_mode(&mut self, on: bool) -> &mut Self
fn is_input_high(&self) -> bool
fn connect_input_to_peripheral_with_options(
&mut self,
signal: InputSignal,
invert: bool,
force_via_gpio_mux: bool
) -> &mut Self
sourcefn disconnect_input_from_peripheral(&mut self, signal: InputSignal) -> &mut Self
fn disconnect_input_from_peripheral(&mut self, signal: InputSignal) -> &mut Self
Remove a connected signal
from this input pin. Read more
fn connect_input_to_peripheral(&mut self, signal: InputSignal) -> &mut Self
sourceimpl<MODE> Pin for Gpio34<MODE>
impl<MODE> Pin for Gpio34<MODE>
fn number(&self) -> u8
fn sleep_mode(&mut self, on: bool) -> &mut Self
fn set_alternate_function(&mut self, alternate: AlternateFunction) -> &mut Self
fn listen_with_options(
&mut self,
event: Event,
int_enable: bool,
nmi_enable: bool,
wake_up_from_light_sleep: bool
)
fn unlisten(&mut self)
fn clear_interrupt(&mut self)
fn is_pcore_interrupt_set(&self) -> bool
fn is_pcore_non_maskable_interrupt_set(&self) -> bool
fn is_acore_interrupt_set(&self) -> bool
fn is_acore_non_maskable_interrupt_set(&self) -> bool
fn enable_hold(&mut self, _on: bool)
fn listen(&mut self, event: Event)
Auto Trait Implementations
impl<MODE> RefUnwindSafe for Gpio34<MODE>where
MODE: RefUnwindSafe,
impl<MODE> Send for Gpio34<MODE>where
MODE: Send,
impl<MODE> Sync for Gpio34<MODE>where
MODE: Sync,
impl<MODE> Unpin for Gpio34<MODE>where
MODE: Unpin,
impl<MODE> UnwindSafe for Gpio34<MODE>where
MODE: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more