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