pub enum PagerSnapQuery {
Between(SnapPoint, SnapPoint),
Beyond(SnapPoint),
}Expand description
Any number can be either between two snap points, or beyond one of the extents.
Variants§
Between(SnapPoint, SnapPoint)
The queried value lies between these two snap points.
Beyond(SnapPoint)
The queried value lies beyond this snap point.
Auto Trait Implementations§
impl Freeze for SnapQuery
impl RefUnwindSafe for SnapQuery
impl Send for SnapQuery
impl Sync for SnapQuery
impl Unpin for SnapQuery
impl UnsafeUnpin for SnapQuery
impl UnwindSafe for SnapQuery
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