pub struct ListVectorStoresQuery {
pub limit: Option<u32>,
pub order: Option<ListVectorStoresOrder>,
pub after: Option<String>,
pub before: Option<String>,
}Available on crate feature
vectorstore-types only.Expand description
Query parameters for listing vector stores.
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<ListVectorStoresOrder>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.
Trait Implementations§
Source§impl Clone for ListVectorStoresQuery
impl Clone for ListVectorStoresQuery
Source§fn clone(&self) -> ListVectorStoresQuery
fn clone(&self) -> ListVectorStoresQuery
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 ListVectorStoresQuery
impl Debug for ListVectorStoresQuery
Source§impl Default for ListVectorStoresQuery
impl Default for ListVectorStoresQuery
Source§fn default() -> ListVectorStoresQuery
fn default() -> ListVectorStoresQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListVectorStoresQuery
impl PartialEq for ListVectorStoresQuery
Source§impl Serialize for ListVectorStoresQuery
impl Serialize for ListVectorStoresQuery
impl StructuralPartialEq for ListVectorStoresQuery
Auto Trait Implementations§
impl Freeze for ListVectorStoresQuery
impl RefUnwindSafe for ListVectorStoresQuery
impl Send for ListVectorStoresQuery
impl Sync for ListVectorStoresQuery
impl Unpin for ListVectorStoresQuery
impl UnsafeUnpin for ListVectorStoresQuery
impl UnwindSafe for ListVectorStoresQuery
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