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