pub enum VectorStoreFileBatchObjectStatus {
InProgress,
Completed,
Cancelled,
Failed,
}
Expand description
The status of the vector store files batch, which can be either in_progress
, completed
, cancelled
or failed
.
Variants§
Trait Implementations§
Source§impl Clone for VectorStoreFileBatchObjectStatus
impl Clone for VectorStoreFileBatchObjectStatus
Source§fn clone(&self) -> VectorStoreFileBatchObjectStatus
fn clone(&self) -> VectorStoreFileBatchObjectStatus
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<'de> Deserialize<'de> for VectorStoreFileBatchObjectStatus
impl<'de> Deserialize<'de> for VectorStoreFileBatchObjectStatus
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 VectorStoreFileBatchObjectStatus
impl PartialEq for VectorStoreFileBatchObjectStatus
Source§fn eq(&self, other: &VectorStoreFileBatchObjectStatus) -> bool
fn eq(&self, other: &VectorStoreFileBatchObjectStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for VectorStoreFileBatchObjectStatus
impl StructuralPartialEq for VectorStoreFileBatchObjectStatus
Auto Trait Implementations§
impl Freeze for VectorStoreFileBatchObjectStatus
impl RefUnwindSafe for VectorStoreFileBatchObjectStatus
impl Send for VectorStoreFileBatchObjectStatus
impl Sync for VectorStoreFileBatchObjectStatus
impl Unpin for VectorStoreFileBatchObjectStatus
impl UnwindSafe for VectorStoreFileBatchObjectStatus
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