pub struct Tbl { /* private fields */ }
Expand description
this table is garanteed to contain at least 2 sequences.
Implementations
sourceimpl Tbl
impl Tbl
pub fn from_raw(raw_tbl: RawTbl) -> Result<Self>
pub fn from_seqs(seqs: Vec<Seq>) -> Result<Self>
pub fn seqs_count(&self) -> usize
pub fn y_seqs_count(&self) -> usize
pub fn dim(&self) -> (usize, usize)
pub fn x_seq(&self) -> &Seq
pub fn y_seqs(&self) -> Skip<Iter<'_, Seq>>
pub fn y_min_max(&self) -> (i64, i64)
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Tbl
impl Send for Tbl
impl Sync for Tbl
impl Unpin for Tbl
impl UnwindSafe for Tbl
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more