pub enum ValueBoundQuery {
After {
after: Prisecter,
limit: Option<i64>,
country: Option<String>,
},
Before {
before: Prisecter,
limit: Option<i64>,
country: Option<String>,
},
NotBound {
limit: Option<i64>,
country: Option<String>,
},
None,
}Variants§
Implementations§
Source§impl ValueBoundQuery
impl ValueBoundQuery
pub fn as_query_params(self) -> Vec<[String; 2]>
Auto Trait Implementations§
impl Freeze for ValueBoundQuery
impl RefUnwindSafe for ValueBoundQuery
impl Send for ValueBoundQuery
impl Sync for ValueBoundQuery
impl Unpin for ValueBoundQuery
impl UnwindSafe for ValueBoundQuery
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