[][src]Struct osu_db::replay::StandardButtonSet

pub struct StandardButtonSet(pub u32);

Implementations

impl StandardButtonSet[src]

pub fn bits(self) -> u32[src]

pub fn from_bits(bits: u32) -> StandardButtonSet[src]

pub fn none() -> StandardButtonSet[src]

Create a new button combination with no buttons pressed.

pub fn is_down(&self, button: StandardButton) -> bool[src]

Check whether the combination lists the button as pressed.

pub fn set_down(
    &self,
    button: StandardButton,
    is_down: bool
) -> StandardButtonSet
[src]

Set the pressed status of the given button.

pub fn press(&self, button: StandardButton) -> StandardButtonSet[src]

Set the pressed status of a button to true.

pub fn release(&self, button: StandardButton) -> StandardButtonSet[src]

Set the pressed status of a button to false.

Trait Implementations

impl Clone for StandardButtonSet[src]

impl Copy for StandardButtonSet[src]

impl Debug for StandardButtonSet[src]

impl Eq for StandardButtonSet[src]

impl Hash for StandardButtonSet[src]

impl PartialEq<StandardButtonSet> for StandardButtonSet[src]

impl StructuralEq for StandardButtonSet[src]

impl StructuralPartialEq for StandardButtonSet[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.