# Functions
NewPager constructs a manually-configured pager.
PageResultFrom parses an HTTP response as JSON and returns a PageResult containing the results, interpreting it as JSON if the content type indicates.
Request performs a Perigee request and extracts the http.Response from the result.
# Variables
ErrPageNotAvailable is returned from a Pager when a next or previous page is requested, but does not exist.
# Structs
LinkedPageBase may be embedded to implement a page that provides navigational "Next" and "Previous" links within its result.
MarkerPageBase is a page in a collection that's paginated by "limit" and "marker" query parameters.
Pager knows how to advance through a specific resource collection, one page at a time.
PageResult stores the HTTP response that returned the current page of results.
# Interfaces
MarkerPage is a stricter Page interface that describes additional functionality required for use with NewMarkerPager.
Page must be satisfied by the result type of any resource collection.
# Type aliases
SinglePageBase may be embedded in a Page that contains all of the results from an operation at once.