pub struct DocumentListResponse {
pub data: Vec<Document>,
pub next_token: Option<String>,
}Expand description
Response from listing documents in a collection.
Fields§
§data: Vec<Document>List of documents.
next_token: Option<String>Pagination token for next page.
Trait Implementations§
Source§impl Clone for DocumentListResponse
impl Clone for DocumentListResponse
Source§fn clone(&self) -> DocumentListResponse
fn clone(&self) -> DocumentListResponse
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 DocumentListResponse
impl Debug for DocumentListResponse
Source§impl<'de> Deserialize<'de> for DocumentListResponse
impl<'de> Deserialize<'de> for DocumentListResponse
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 DocumentListResponse
impl RefUnwindSafe for DocumentListResponse
impl Send for DocumentListResponse
impl Sync for DocumentListResponse
impl Unpin for DocumentListResponse
impl UnsafeUnpin for DocumentListResponse
impl UnwindSafe for DocumentListResponse
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