pub type PbScanRange = ScanRange;Aliased Type§
pub struct PbScanRange {
pub eq_conds: Vec<Vec<u8>>,
pub lower_bound: Option<Bound>,
pub upper_bound: Option<Bound>,
}Fields§
§eq_conds: Vec<Vec<u8>>The i-th element represents the value of the i-th PK column.
lower_bound: Option<Bound>The lower bound of the next PK column subsequent to those in eq_conds.
upper_bound: Option<Bound>The upper bound of the next PK column subsequent to those in eq_conds.