pub struct DatasetListItemsOptions {Show 15 fields
pub offset: Option<i64>,
pub limit: Option<i64>,
pub desc: Option<bool>,
pub fields: Option<Vec<String>>,
pub output_fields: Option<Vec<String>>,
pub omit: Option<Vec<String>>,
pub skip_empty: Option<bool>,
pub skip_hidden: Option<bool>,
pub clean: Option<bool>,
pub unwind: Option<Vec<String>>,
pub flatten: Option<Vec<String>>,
pub view: Option<String>,
pub simplified: Option<bool>,
pub skip_failed_pages: Option<bool>,
pub signature: Option<String>,
}Expand description
Options for listing or downloading dataset items.
Covers the filtering, projection and transformation parameters of
GET /v2/datasets/{datasetId}/items.
Fields§
§offset: Option<i64>Number of items to skip.
limit: Option<i64>Maximum number of items to return.
desc: Option<bool>Return items newest-first.
fields: Option<Vec<String>>Only include these fields.
output_fields: Option<Vec<String>>Positionally renames the fields selected by fields in the output (requires fields
to be set). The i-th name here becomes the output name of the i-th fields entry.
omit: Option<Vec<String>>Exclude these fields.
skip_empty: Option<bool>Skip empty items.
Skip hidden fields (those starting with #).
clean: Option<bool>Only return clean (non-empty, non-hidden) items.
unwind: Option<Vec<String>>Unwind these fields (each array element becomes a separate item).
flatten: Option<Vec<String>>Flatten these nested fields into dot-notation keys.
view: Option<String>Use a predefined dataset view for field selection.
simplified: Option<bool>Return simplified (flattened, cleaned) items.
skip_failed_pages: Option<bool>Skip items that come from failed pages.
signature: Option<String>Pre-shared URL signature granting access to a private dataset without an API token.
Trait Implementations§
Source§impl Clone for DatasetListItemsOptions
impl Clone for DatasetListItemsOptions
Source§fn clone(&self) -> DatasetListItemsOptions
fn clone(&self) -> DatasetListItemsOptions
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more