pub struct GetItems {
pub limit: Option<String>,
pub bbox: Option<String>,
pub datetime: Option<String>,
pub fields: Option<String>,
pub sortby: Option<String>,
pub filter_crs: Option<String>,
pub filter_lang: Option<String>,
pub filter: Option<String>,
pub additional_fields: HashMap<String, String>,
}
Expand description
GET parameters for the items endpoint from STAC API - Features.
This is a lot like Search, but without intersects, ids, and collections.
Fields§
§limit: Option<String>
The maximum number of results to return (page size).
bbox: Option<String>
Requested bounding box.
datetime: Option<String>
Single date+time, or a range (‘/’ separator), formatted to RFC 3339, section 5.6.
Use double dots ..
for open date ranges.
fields: Option<String>
Include/exclude fields from item collections.
sortby: Option<String>
Fields by which to sort results.
filter_crs: Option<String>
Recommended to not be passed, but server must only accept http://www.opengis.net/def/crs/OGC/1.3/CRS84 as a valid value, may reject any others
filter_lang: Option<String>
CQL2 filter expression.
filter: Option<String>
CQL2 filter expression.
additional_fields: HashMap<String, String>
Additional fields.
Trait Implementations§
source§impl<'de> Deserialize<'de> for GetItems
impl<'de> Deserialize<'de> for GetItems
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more