pub struct DatasetList {
pub datasets: Vec<Dataset>,
pub extra: Extra,
}Expand description
GET /v1/datasets → {datasets: [Dataset…]}. Not a crate::Page: like
CrawlList, this endpoint answers a named object rather than the list
envelope (unwrap its datasets field).
Fields§
§datasets: Vec<Dataset>§extra: ExtraTrait Implementations§
Source§impl Clone for DatasetList
impl Clone for DatasetList
Source§fn clone(&self) -> DatasetList
fn clone(&self) -> DatasetList
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 moreSource§impl Debug for DatasetList
impl Debug for DatasetList
Source§impl Default for DatasetList
impl Default for DatasetList
Source§fn default() -> DatasetList
fn default() -> DatasetList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatasetListwhere
DatasetList: Default,
impl<'de> Deserialize<'de> for DatasetListwhere
DatasetList: Default,
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
Auto Trait Implementations§
impl Freeze for DatasetList
impl RefUnwindSafe for DatasetList
impl Send for DatasetList
impl Sync for DatasetList
impl Unpin for DatasetList
impl UnsafeUnpin for DatasetList
impl UnwindSafe for DatasetList
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