pub struct ListVectorStoreFilesQuery {
pub limit: Option<u32>,
pub order: Option<ListVectorStoreFilesOrder>,
pub after: Option<String>,
pub before: Option<String>,
pub filter: Option<ListVectorStoreFilesFilter>,
}Available on crate feature
vectorstore-types only.Expand description
Query parameters for listing vector store files.
Fields§
§limit: Option<u32>A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
order: Option<ListVectorStoreFilesOrder>Sort order by the created_at timestamp of the objects. asc for ascending order and
desc for descending order.
after: Option<String>A cursor for use in pagination. after is an object ID that defines your place in the
list.
before: Option<String>A cursor for use in pagination. before is an object ID that defines your place in the
list.
filter: Option<ListVectorStoreFilesFilter>Filter by file status. One of in_progress, completed, failed, cancelled.
Trait Implementations§
Source§impl Clone for ListVectorStoreFilesQuery
impl Clone for ListVectorStoreFilesQuery
Source§fn clone(&self) -> ListVectorStoreFilesQuery
fn clone(&self) -> ListVectorStoreFilesQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListVectorStoreFilesQuery
impl Debug for ListVectorStoreFilesQuery
Source§impl Default for ListVectorStoreFilesQuery
impl Default for ListVectorStoreFilesQuery
Source§fn default() -> ListVectorStoreFilesQuery
fn default() -> ListVectorStoreFilesQuery
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListVectorStoreFilesQuery
Auto Trait Implementations§
impl Freeze for ListVectorStoreFilesQuery
impl RefUnwindSafe for ListVectorStoreFilesQuery
impl Send for ListVectorStoreFilesQuery
impl Sync for ListVectorStoreFilesQuery
impl Unpin for ListVectorStoreFilesQuery
impl UnsafeUnpin for ListVectorStoreFilesQuery
impl UnwindSafe for ListVectorStoreFilesQuery
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