pub struct VectorStoreFileContentResponse {
pub data: Vec<VectorStoreFileContentResponseData>,
pub has_more: bool,
pub next_page: String,
pub object: String,
}Fields§
§data: Vec<VectorStoreFileContentResponseData>Parsed content of the file.
has_more: boolIndicates if there are more content pages to fetch.
next_page: StringThe token for the next page, if any.
object: StringThe object type, which is always vector_store.file_content.page
Trait Implementations§
Source§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
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