pub struct VectorStoreFileBatch {
pub id: String,
pub object: String,
pub created_at: Option<u64>,
pub vector_store_id: Option<String>,
pub status: Option<String>,
pub file_counts: Option<VectorStoreFileCounts>,
pub extra: BTreeMap<String, Value>,
}Expand description
表示 vector store file batch 对象。
Fields§
§id: String对象 ID。
object: String对象类型。
created_at: Option<u64>创建时间戳。
vector_store_id: Option<String>关联的 vector store ID。
status: Option<String>状态。
file_counts: Option<VectorStoreFileCounts>文件计数。
extra: BTreeMap<String, Value>额外字段。
Trait Implementations§
Source§impl Clone for VectorStoreFileBatch
impl Clone for VectorStoreFileBatch
Source§fn clone(&self) -> VectorStoreFileBatch
fn clone(&self) -> VectorStoreFileBatch
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 VectorStoreFileBatch
impl Debug for VectorStoreFileBatch
Source§impl Default for VectorStoreFileBatch
impl Default for VectorStoreFileBatch
Source§fn default() -> VectorStoreFileBatch
fn default() -> VectorStoreFileBatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VectorStoreFileBatch
impl<'de> Deserialize<'de> for VectorStoreFileBatch
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
Auto Trait Implementations§
impl Freeze for VectorStoreFileBatch
impl RefUnwindSafe for VectorStoreFileBatch
impl Send for VectorStoreFileBatch
impl Sync for VectorStoreFileBatch
impl Unpin for VectorStoreFileBatch
impl UnsafeUnpin for VectorStoreFileBatch
impl UnwindSafe for VectorStoreFileBatch
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