[][src]Struct gba_types::KeyInputLowActive

#[repr(transparent)]pub struct KeyInputLowActive(_);

Implementations

impl KeyInputLowActive[src]

#[must_use]pub fn a_released(self) -> bool[src]

#[must_use]pub fn b_released(self) -> bool[src]

#[must_use]pub fn select_released(self) -> bool[src]

#[must_use]pub fn start_released(self) -> bool[src]

#[must_use]pub fn right_released(self) -> bool[src]

#[must_use]pub fn left_released(self) -> bool[src]

#[must_use]pub fn up_released(self) -> bool[src]

#[must_use]pub fn down_released(self) -> bool[src]

#[must_use]pub fn r_released(self) -> bool[src]

#[must_use]pub fn l_released(self) -> bool[src]

pub fn set_a_released(&mut self, a_released: bool)[src]

pub fn set_b_released(&mut self, b_released: bool)[src]

pub fn set_select_released(&mut self, select_released: bool)[src]

pub fn set_start_released(&mut self, start_released: bool)[src]

pub fn set_right_released(&mut self, right_released: bool)[src]

pub fn set_left_released(&mut self, left_released: bool)[src]

pub fn set_up_released(&mut self, up_released: bool)[src]

pub fn set_down_released(&mut self, down_released: bool)[src]

pub fn set_r_released(&mut self, r_released: bool)[src]

pub fn set_l_released(&mut self, l_released: bool)[src]

Trait Implementations

impl Clone for KeyInputLowActive[src]

impl Copy for KeyInputLowActive[src]

impl Debug for KeyInputLowActive[src]

impl Default for KeyInputLowActive[src]

impl Eq for KeyInputLowActive[src]

impl Hash for KeyInputLowActive[src]

impl Ord for KeyInputLowActive[src]

impl PartialEq<KeyInputLowActive> for KeyInputLowActive[src]

impl PartialOrd<KeyInputLowActive> for KeyInputLowActive[src]

impl StructuralEq for KeyInputLowActive[src]

impl StructuralPartialEq for KeyInputLowActive[src]

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<T>, 
[src]

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.