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