Struct etterna::NoteRow[][src]

pub struct NoteRow { /* fields omitted */ }

Implementations

impl NoteRow[src]

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

Instantiates from a bitset stored in an integer, where the least significant bit corresponds to the leftmost lane.

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

Returns the notes as a bitset, where the least significant bit corresponds to the leftmost lane

pub fn tap_at(self, index: u32) -> bool[src]

Returns whether there is a tap at the given index, where 0 is the leftmost lane.

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

Returns the number of notes that this row spans

assert_eq!(NoteRow::from_bits(0b10101).width(), 5);
assert_eq!(NoteRow::from_bits(0b0011).width(), 2); // be careful!

Trait Implementations

impl Clone for NoteRow[src]

impl Copy for NoteRow[src]

impl Debug for NoteRow[src]

impl Default for NoteRow[src]

impl Eq for NoteRow[src]

impl Hash for NoteRow[src]

impl PartialEq<NoteRow> for NoteRow[src]

impl StructuralEq for NoteRow[src]

impl StructuralPartialEq for NoteRow[src]

Auto Trait Implementations

impl RefUnwindSafe for NoteRow

impl Send for NoteRow

impl Sync for NoteRow

impl Unpin for NoteRow

impl UnwindSafe for NoteRow

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.