pub struct DeleteByIdsRequest {
pub ids: Vec<String>,
}Expand description
Request body for the Vectorize delete_by_ids endpoint.
Fields§
§ids: Vec<String>The vector IDs to delete.
Trait Implementations§
Source§impl Clone for DeleteByIdsRequest
impl Clone for DeleteByIdsRequest
Source§fn clone(&self) -> DeleteByIdsRequest
fn clone(&self) -> DeleteByIdsRequest
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 DeleteByIdsRequest
impl Debug for DeleteByIdsRequest
Auto Trait Implementations§
impl Freeze for DeleteByIdsRequest
impl RefUnwindSafe for DeleteByIdsRequest
impl Send for DeleteByIdsRequest
impl Sync for DeleteByIdsRequest
impl Unpin for DeleteByIdsRequest
impl UnsafeUnpin for DeleteByIdsRequest
impl UnwindSafe for DeleteByIdsRequest
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