pub enum LimitType {
UpperLimit,
LowerLimit,
Range,
RangeExclusion,
}Expand description
Type of bound or range represented by a data value.
Variants§
UpperLimit
An upper limit.
LowerLimit
A lower limit.
Range
A closed range.
RangeExclusion
An excluded range.
Implementations§
Trait Implementations§
impl Copy for LimitType
impl Eq for LimitType
Source§impl FromSql for LimitType
impl FromSql for LimitType
Source§fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>
fn column_result(value: ValueRef<'_>) -> FromSqlResult<Self>
Converts SQLite value into Rust value.
impl StructuralPartialEq for LimitType
Auto Trait Implementations§
impl Freeze for LimitType
impl RefUnwindSafe for LimitType
impl Send for LimitType
impl Sync for LimitType
impl Unpin for LimitType
impl UnsafeUnpin for LimitType
impl UnwindSafe for LimitType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more