pub enum PakQuery {
Equal(String, PakValue),
GreaterThan(String, PakValue),
LessThan(String, PakValue),
GreaterThanEqual(String, PakValue),
LessThanEqual(String, PakValue),
}
Variants§
Equal(String, PakValue)
GreaterThan(String, PakValue)
LessThan(String, PakValue)
GreaterThanEqual(String, PakValue)
LessThanEqual(String, PakValue)
Implementations§
Source§impl PakQuery
impl PakQuery
pub fn equals(key: &str, value: impl Into<PakValue>) -> Self
pub fn greater_than(key: &str, value: impl Into<PakValue>) -> Self
pub fn less_than(key: &str, value: impl Into<PakValue>) -> Self
pub fn greater_than_or_equal(key: &str, value: impl Into<PakValue>) -> Self
pub fn less_than_or_equal(key: &str, value: impl Into<PakValue>) -> Self
Trait Implementations§
Source§impl<B> BitAnd<B> for PakQuerywhere
B: PakQueryExpression + 'static,
impl<B> BitAnd<B> for PakQuerywhere
B: PakQueryExpression + 'static,
Source§impl<B> BitOr<B> for PakQuerywhere
B: PakQueryExpression + 'static,
impl<B> BitOr<B> for PakQuerywhere
B: PakQueryExpression + 'static,
Auto Trait Implementations§
impl Freeze for PakQuery
impl RefUnwindSafe for PakQuery
impl Send for PakQuery
impl Sync for PakQuery
impl Unpin for PakQuery
impl UnwindSafe for PakQuery
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