pub enum VectorStoreObjectStatus {
Expired,
InProgress,
Completed,
}
Expand description
The status of the vector store, which can be either expired
, in_progress
, or completed
. A status of completed
indicates that the vector store is ready for use.
Variants§
Trait Implementations§
Source§impl Clone for VectorStoreObjectStatus
impl Clone for VectorStoreObjectStatus
Source§fn clone(&self) -> VectorStoreObjectStatus
fn clone(&self) -> VectorStoreObjectStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VectorStoreObjectStatus
impl Debug for VectorStoreObjectStatus
Source§impl<'de> Deserialize<'de> for VectorStoreObjectStatus
impl<'de> Deserialize<'de> for VectorStoreObjectStatus
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 VectorStoreObjectStatus
impl PartialEq for VectorStoreObjectStatus
Source§fn eq(&self, other: &VectorStoreObjectStatus) -> bool
fn eq(&self, other: &VectorStoreObjectStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for VectorStoreObjectStatus
impl Serialize for VectorStoreObjectStatus
impl Copy for VectorStoreObjectStatus
impl StructuralPartialEq for VectorStoreObjectStatus
Auto Trait Implementations§
impl Freeze for VectorStoreObjectStatus
impl RefUnwindSafe for VectorStoreObjectStatus
impl Send for VectorStoreObjectStatus
impl Sync for VectorStoreObjectStatus
impl Unpin for VectorStoreObjectStatus
impl UnwindSafe for VectorStoreObjectStatus
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