pub struct RagDeleteCollectionResponse {
pub success: bool,
pub collection: String,
pub documents_deleted: usize,
}Expand description
Response from collection deletion.
Fields§
§success: boolWhether deletion was successful.
collection: StringCollection that was deleted.
documents_deleted: usizeNumber of documents deleted.
Trait Implementations§
Source§impl Debug for RagDeleteCollectionResponse
impl Debug for RagDeleteCollectionResponse
Source§impl<'de> Deserialize<'de> for RagDeleteCollectionResponse
impl<'de> Deserialize<'de> for RagDeleteCollectionResponse
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 RagDeleteCollectionResponse
impl RefUnwindSafe for RagDeleteCollectionResponse
impl Send for RagDeleteCollectionResponse
impl Sync for RagDeleteCollectionResponse
impl Unpin for RagDeleteCollectionResponse
impl UnsafeUnpin for RagDeleteCollectionResponse
impl UnwindSafe for RagDeleteCollectionResponse
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