pub struct ListDatasetContentsRequest {
pub dataset_name: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub scheduled_before: Option<f64>,
pub scheduled_on_or_after: Option<f64>,
}Fields§
§dataset_name: StringThe name of the data set whose contents information you want to list.
max_results: Option<i64>The maximum number of results to return in this request.
next_token: Option<String>The token for the next set of results.
scheduled_before: Option<f64>A filter to limit results to those data set contents whose creation is scheduled before the given time. See the field triggers.schedule in the CreateDataset request. (timestamp)
scheduled_on_or_after: Option<f64>A filter to limit results to those data set contents whose creation is scheduled on or after the given time. See the field triggers.schedule in the CreateDataset request. (timestamp)
Trait Implementations§
Source§impl Clone for ListDatasetContentsRequest
impl Clone for ListDatasetContentsRequest
Source§fn clone(&self) -> ListDatasetContentsRequest
fn clone(&self) -> ListDatasetContentsRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 ListDatasetContentsRequest
impl Debug for ListDatasetContentsRequest
Source§impl Default for ListDatasetContentsRequest
impl Default for ListDatasetContentsRequest
Source§fn default() -> ListDatasetContentsRequest
fn default() -> ListDatasetContentsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListDatasetContentsRequest
Auto Trait Implementations§
impl Freeze for ListDatasetContentsRequest
impl RefUnwindSafe for ListDatasetContentsRequest
impl Send for ListDatasetContentsRequest
impl Sync for ListDatasetContentsRequest
impl Unpin for ListDatasetContentsRequest
impl UnwindSafe for ListDatasetContentsRequest
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