pub struct SizedQuery {
pub query: Query,
pub limit: Option<u16>,
pub offset: Option<u16>,
}
Fields§
§query: Query
§limit: Option<u16>
§offset: Option<u16>
Trait Implementations§
Source§impl Clone for SizedQuery
impl Clone for SizedQuery
Source§fn clone(&self) -> SizedQuery
fn clone(&self) -> SizedQuery
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 SizedQuery
impl Debug for SizedQuery
Source§impl<'de> Deserialize<'de> for SizedQuery
impl<'de> Deserialize<'de> for SizedQuery
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 SizedQuery
impl PartialEq for SizedQuery
Source§impl Serialize for SizedQuery
impl Serialize for SizedQuery
impl Eq for SizedQuery
impl StructuralPartialEq for SizedQuery
Auto Trait Implementations§
impl Freeze for SizedQuery
impl RefUnwindSafe for SizedQuery
impl Send for SizedQuery
impl Sync for SizedQuery
impl Unpin for SizedQuery
impl UnwindSafe for SizedQuery
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