pub struct Context {
pub returned: u64,
pub limit: Option<u64>,
pub matched: Option<u64>,
pub additional_fields: Map<String, Value>,
}
Expand description
The search-related metadata for the ItemCollection.
Part of the context extension.
Fields§
§returned: u64
The count of results returned by this response. Equal to the cardinality of features array.
limit: Option<u64>
The maximum number of results to which the result was limited.
matched: Option<u64>
The count of total number of results that match for this query, possibly estimated, particularly in the context of NoSQL data stores.
additional_fields: Map<String, Value>
Additional fields.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Context
impl<'de> Deserialize<'de> for Context
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