[][src]Struct babalcore::Row

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 get(&self, now_msec: i64, col: isize) -> SlabKind[src]

Get a row content, at a given time.

Examples

use babalcore::*;

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

Trait Implementations

impl Debug for Row[src]

impl Default for Row[src]

impl Display for Row[src]

Auto Trait Implementations

impl RefUnwindSafe for Row

impl Send for Row

impl Sync for Row

impl Unpin for Row

impl UnwindSafe for Row

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.