Struct dropshot::ResultsPage

source ·
pub struct ResultsPage<ItemType> {
    pub next_page: Option<String>,
    pub items: Vec<ItemType>,
}
Expand description

A page of results from a paginated API

This structure is intended for use both on the server side (to generate the results page) and on the client side (to parse it).

Fields§

§next_page: Option<String>

token used to fetch the next page of results (if any)

§items: Vec<ItemType>

list of items on this page of results

Implementations§

source§

impl<ItemType> ResultsPage<ItemType>

source

pub fn new<F, ScanParams, PageSelector>( items: Vec<ItemType>, scan_params: &ScanParams, get_page_selector: F ) -> Result<ResultsPage<ItemType>, HttpError>
where F: Fn(&ItemType, &ScanParams) -> PageSelector, PageSelector: Serialize,

Construct a new results page from the list of items. page_selector is a function used to construct the page token that clients will provide to fetch the next page of results. scan_params is provided to the page_selector function, since the token may depend on the type of scan.

Trait Implementations§

source§

impl<ItemType: Debug> Debug for ResultsPage<ItemType>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, ItemType> Deserialize<'de> for ResultsPage<ItemType>
where ItemType: Deserialize<'de>,

source§

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<ItemType> JsonSchema for ResultsPage<ItemType>
where ItemType: JsonSchema,

source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
source§

fn json_schema(gen: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
source§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
source§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
source§

impl<ItemType> Serialize for ResultsPage<ItemType>
where ItemType: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<ItemType> RefUnwindSafe for ResultsPage<ItemType>
where ItemType: RefUnwindSafe,

§

impl<ItemType> Send for ResultsPage<ItemType>
where ItemType: Send,

§

impl<ItemType> Sync for ResultsPage<ItemType>
where ItemType: Sync,

§

impl<ItemType> Unpin for ResultsPage<ItemType>
where ItemType: Unpin,

§

impl<ItemType> UnwindSafe for ResultsPage<ItemType>
where ItemType: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> SendSyncUnwindSafe for T
where T: Send + Sync + UnwindSafe + ?Sized,

source§

impl<T> ServerContext for T
where T: 'static + Send + Sync,