Trait tc_table::TableSlice
source · 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
Required Associated Types§
sourcetype Slice: TableInstance
type Slice: TableInstance
The type of Table
returned by this instance’s slice
method.