zotero-api-rs 1.0.0

A secure, typed Rust client for the Zotero Web API v3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Parsed HTTP Link header relations.

/// Pagination links parsed from `Link` header.
#[derive(Clone, Debug, Default)]
pub struct PaginationLinks {
    /// `rel=first`.
    pub first: Option<String>,
    /// `rel=prev`.
    pub prev: Option<String>,
    /// `rel=next`.
    pub next: Option<String>,
    /// `rel=last`.
    pub last: Option<String>,
    /// `rel=alternate`.
    pub alternate: Option<String>,
}