pub trait Bounder<'a>: PrimaryKey<'a> + Sized {
    fn inclusive_bound(self) -> Option<Bound<'a, Self>>;
fn exclusive_bound(self) -> Option<Bound<'a, Self>>; }

Required methods

Implementations on Foreign Types

Implementors