pub enum VectorStoreFileObjectStatus {
InProgress,
Completed,
Cancelled,
Failed,
}
Expand description
The status of the vector store file, which can be either in_progress
, completed
, cancelled
, or failed
. The status completed
indicates that the vector store file is ready for use.
Variants§
Trait Implementations§
Source§impl Clone for VectorStoreFileObjectStatus
impl Clone for VectorStoreFileObjectStatus
Source§fn clone(&self) -> VectorStoreFileObjectStatus
fn clone(&self) -> VectorStoreFileObjectStatus
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 VectorStoreFileObjectStatus
impl Debug for VectorStoreFileObjectStatus
Source§impl<'de> Deserialize<'de> for VectorStoreFileObjectStatus
impl<'de> Deserialize<'de> for VectorStoreFileObjectStatus
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
impl Copy for VectorStoreFileObjectStatus
impl StructuralPartialEq for VectorStoreFileObjectStatus
Auto Trait Implementations§
impl Freeze for VectorStoreFileObjectStatus
impl RefUnwindSafe for VectorStoreFileObjectStatus
impl Send for VectorStoreFileObjectStatus
impl Sync for VectorStoreFileObjectStatus
impl Unpin for VectorStoreFileObjectStatus
impl UnwindSafe for VectorStoreFileObjectStatus
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