pub struct LimitQuery {
pub limit: Option<u64>,
}Expand description
Query parameters for limit-only cursor pagination.
Fields§
§limit: Option<u64>Requested page size.
Implementations§
Trait Implementations§
Source§impl Clone for LimitQuery
impl Clone for LimitQuery
Source§fn clone(&self) -> LimitQuery
fn clone(&self) -> LimitQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for LimitQuery
impl ComposeSchema for LimitQuery
Source§impl Debug for LimitQuery
impl Debug for LimitQuery
Source§impl Default for LimitQuery
impl Default for LimitQuery
Source§fn default() -> LimitQuery
fn default() -> LimitQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LimitQuery
impl<'de> Deserialize<'de> for LimitQuery
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 IntoParams for LimitQuery
impl IntoParams for LimitQuery
Source§impl ToSchema for LimitQuery
impl ToSchema for LimitQuery
impl Copy for LimitQuery
Auto Trait Implementations§
impl Freeze for LimitQuery
impl RefUnwindSafe for LimitQuery
impl Send for LimitQuery
impl Sync for LimitQuery
impl Unpin for LimitQuery
impl UnsafeUnpin for LimitQuery
impl UnwindSafe for LimitQuery
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