pub struct LimitOffset {
pub results_per_page: Option<u64>,
pub start_index: Option<u64>,
}
Expand description
pagination
Fields§
§results_per_page: Option<u64>
§start_index: Option<u64>
Trait Implementations§
Source§impl Clone for LimitOffset
impl Clone for LimitOffset
Source§fn clone(&self) -> LimitOffset
fn clone(&self) -> LimitOffset
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LimitOffset
impl Debug for LimitOffset
Source§impl Default for LimitOffset
impl Default for LimitOffset
Source§fn default() -> LimitOffset
fn default() -> LimitOffset
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LimitOffset
impl<'de> Deserialize<'de> for LimitOffset
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LimitOffset
impl PartialEq for LimitOffset
Source§impl Serialize for LimitOffset
impl Serialize for LimitOffset
impl Eq for LimitOffset
impl StructuralPartialEq for LimitOffset
Auto Trait Implementations§
impl Freeze for LimitOffset
impl RefUnwindSafe for LimitOffset
impl Send for LimitOffset
impl Sync for LimitOffset
impl Unpin for LimitOffset
impl UnwindSafe for LimitOffset
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.