pub struct PaginationVars {
pub offset: Option<i32>,
pub before: Option<String>,
pub after: Option<String>,
pub first: Option<i32>,
pub last: Option<i32>,
}
Fields§
§offset: Option<i32>
§before: Option<String>
§after: Option<String>
§first: Option<i32>
§last: Option<i32>
Trait Implementations§
Source§impl Clone for PaginationVars
impl Clone for PaginationVars
Source§fn clone(&self) -> PaginationVars
fn clone(&self) -> PaginationVars
Returns a copy 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 PaginationVars
impl Debug for PaginationVars
Source§impl QueryVariables for PaginationVars
impl QueryVariables for PaginationVars
Source§const VARIABLES: &'static [(&'static str, VariableType)] = _
const VARIABLES: &'static [(&'static str, VariableType)] = _
An associated constant that contains the variable names & their types. Read more
Source§type Fields = PaginationVarsFields
type Fields = PaginationVarsFields
A struct that determines which variables are available when using this
struct.
Auto Trait Implementations§
impl Freeze for PaginationVars
impl RefUnwindSafe for PaginationVars
impl Send for PaginationVars
impl Sync for PaginationVars
impl Unpin for PaginationVars
impl UnwindSafe for PaginationVars
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