pub struct ListInputItemsResponse {
pub data: Vec<InputItem>,
pub total: Option<i64>,
pub has_more: Option<bool>,
}Expand description
Response containing a list of input items.
Returned by the list input items endpoint.
Fields§
§data: Vec<InputItem>List of input items
total: Option<i64>Total count of input items
has_more: Option<bool>Whether there are more items available
Trait Implementations§
Source§impl Clone for ListInputItemsResponse
impl Clone for ListInputItemsResponse
Source§fn clone(&self) -> ListInputItemsResponse
fn clone(&self) -> ListInputItemsResponse
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 ListInputItemsResponse
impl Debug for ListInputItemsResponse
Source§impl<'de> Deserialize<'de> for ListInputItemsResponse
impl<'de> Deserialize<'de> for ListInputItemsResponse
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
Auto Trait Implementations§
impl Freeze for ListInputItemsResponse
impl RefUnwindSafe for ListInputItemsResponse
impl Send for ListInputItemsResponse
impl Sync for ListInputItemsResponse
impl Unpin for ListInputItemsResponse
impl UnwindSafe for ListInputItemsResponse
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