pub enum PageSizeArgument {
First,
Last,
}Expand description
Which argument a connection took its page size from.
GraphQL and GitHub define exactly these two, so the set is closed and a consumer may match it exhaustively.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PageSizeArgument
impl Clone for PageSizeArgument
Source§fn clone(&self) -> PageSizeArgument
fn clone(&self) -> PageSizeArgument
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 moreimpl Copy for PageSizeArgument
Source§impl Debug for PageSizeArgument
impl Debug for PageSizeArgument
Source§impl Display for PageSizeArgument
impl Display for PageSizeArgument
impl Eq for PageSizeArgument
Source§impl PartialEq for PageSizeArgument
impl PartialEq for PageSizeArgument
impl StructuralPartialEq for PageSizeArgument
Auto Trait Implementations§
impl Freeze for PageSizeArgument
impl RefUnwindSafe for PageSizeArgument
impl Send for PageSizeArgument
impl Sync for PageSizeArgument
impl Unpin for PageSizeArgument
impl UnsafeUnpin for PageSizeArgument
impl UnwindSafe for PageSizeArgument
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