pub enum DownloadItemsFormat {
Json,
Jsonl,
Csv,
Xlsx,
Xml,
Rss,
Html,
}Expand description
Output formats supported by DatasetClient::download_items.
Variants§
Json
JSON array.
Jsonl
Newline-delimited JSON.
Csv
Comma-separated values.
Xlsx
Microsoft Excel (XLSX).
Xml
XML.
Rss
RSS feed.
Html
HTML table.
Trait Implementations§
Source§impl Clone for DownloadItemsFormat
impl Clone for DownloadItemsFormat
Source§fn clone(&self) -> DownloadItemsFormat
fn clone(&self) -> DownloadItemsFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DownloadItemsFormat
Source§impl Debug for DownloadItemsFormat
impl Debug for DownloadItemsFormat
impl Eq for DownloadItemsFormat
Source§impl PartialEq for DownloadItemsFormat
impl PartialEq for DownloadItemsFormat
Source§fn eq(&self, other: &DownloadItemsFormat) -> bool
fn eq(&self, other: &DownloadItemsFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DownloadItemsFormat
Auto Trait Implementations§
impl Freeze for DownloadItemsFormat
impl RefUnwindSafe for DownloadItemsFormat
impl Send for DownloadItemsFormat
impl Sync for DownloadItemsFormat
impl Unpin for DownloadItemsFormat
impl UnsafeUnpin for DownloadItemsFormat
impl UnwindSafe for DownloadItemsFormat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more