Struct babalcore::Row[][src]

pub struct Row {
    pub slabs: [Slab; 32],
}

Fields

slabs: [Slab; 32]

Slabs containing the actual data

Implementations

impl Row[src]

pub fn new(def: SlabDef) -> Row[src]

Create a new row, with a given slab def.

Examples

use babalcore::*;

let _row = Row::new(SlabDef::Floor);

pub fn slab_kind(&self, col: isize, now_msec: i64) -> SlabKind[src]

Get a row content, at a given time.

Examples

use babalcore::*;

let row = Row::new(SlabDef::Floor);
assert_eq!(SlabKind::Floor, row.slab_kind(5, 123));

pub fn set(&mut self, col: isize, def: SlabDef)[src]

Set a row content.

Examples

use babalcore::*;

let mut row = Row::default();
assert_eq!(SlabKind::Void, row.slab_kind(3, 0));
row.set(3, SlabDef::Floor);
assert_eq!(SlabKind::Floor, row.slab_kind(3, 0));
assert_eq!(SlabKind::Void, row.slab_kind(2, 0));

pub fn get(&self, col: isize) -> SlabDef[src]

Trait Implementations

impl Debug for Row[src]

impl Default for Row[src]

impl Display for Row[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> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,