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