pub struct VectorStoreFileContentResponse {
pub object: String,
pub data: Vec<VectorStoreFileContentObject>,
pub has_more: bool,
pub next_page: Option<String>,
}
Expand description
Represents the parsed content of a vector store file.
Fields§
§object: String
The object type, which is always vector_store.file_content.page
data: Vec<VectorStoreFileContentObject>
Parsed content of the file.
has_more: bool
Indicates if there are more content pages to fetch.
next_page: Option<String>
The token for the next page, if any.
Trait Implementations§
Source§impl Clone for VectorStoreFileContentResponse
impl Clone for VectorStoreFileContentResponse
Source§fn clone(&self) -> VectorStoreFileContentResponse
fn clone(&self) -> VectorStoreFileContentResponse
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 VectorStoreFileContentResponse
impl<'de> Deserialize<'de> for VectorStoreFileContentResponse
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 PartialEq for VectorStoreFileContentResponse
impl PartialEq for VectorStoreFileContentResponse
Source§fn eq(&self, other: &VectorStoreFileContentResponse) -> bool
fn eq(&self, other: &VectorStoreFileContentResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for VectorStoreFileContentResponse
Auto Trait Implementations§
impl Freeze for VectorStoreFileContentResponse
impl RefUnwindSafe for VectorStoreFileContentResponse
impl Send for VectorStoreFileContentResponse
impl Sync for VectorStoreFileContentResponse
impl Unpin for VectorStoreFileContentResponse
impl UnwindSafe for VectorStoreFileContentResponse
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