pub struct IngestionBatchExecutionsList {
pub items: Vec<IngestionBatchExecution>,
pub next_page_token: Option<NextPageToken>,
}
Expand description
List of Ingestion Batch Executions.
JSON schema
{
"description": "List of Ingestion Batch Executions.",
"type": "object",
"required": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IngestionBatchExecution"
}
},
"nextPageToken": {
"$ref": "#/components/schemas/nextPageToken"
}
},
"additionalProperties": false,
"x-schema-name": "IngestionBatchExecutionsList"
}
Fields§
§items: Vec<IngestionBatchExecution>
§next_page_token: Option<NextPageToken>
Trait Implementations§
Source§impl Clone for IngestionBatchExecutionsList
impl Clone for IngestionBatchExecutionsList
Source§fn clone(&self) -> IngestionBatchExecutionsList
fn clone(&self) -> IngestionBatchExecutionsList
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 IngestionBatchExecutionsList
impl Debug for IngestionBatchExecutionsList
Source§impl<'de> Deserialize<'de> for IngestionBatchExecutionsList
impl<'de> Deserialize<'de> for IngestionBatchExecutionsList
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
Source§impl From<&IngestionBatchExecutionsList> for IngestionBatchExecutionsList
impl From<&IngestionBatchExecutionsList> for IngestionBatchExecutionsList
Source§fn from(value: &IngestionBatchExecutionsList) -> Self
fn from(value: &IngestionBatchExecutionsList) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IngestionBatchExecutionsList
impl RefUnwindSafe for IngestionBatchExecutionsList
impl Send for IngestionBatchExecutionsList
impl Sync for IngestionBatchExecutionsList
impl Unpin for IngestionBatchExecutionsList
impl UnwindSafe for IngestionBatchExecutionsList
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