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§fn clone_from(&mut self, source: &Self)
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§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