Trait tc_table::TableSlice [−][src]
pub trait TableSlice: TableStream { type Slice: TableInstance; fn slice(self, _bounds: Bounds) -> TCResult<Self::Slice>; fn validate_bounds(&self, bounds: &Bounds) -> TCResult<()>; }
Expand description
Methods for slicing a Table
Associated Types
type Slice: TableInstance
type Slice: TableInstance
The type of Table
returned by this instance’s slice
method.
Required methods
Limit the returned rows
to the given Bounds
.