pub struct CollectionBulkDeleteRequestModel {
pub ids: Vec<Uuid>,
}
Fields§
§ids: Vec<Uuid>
Implementations§
Source§impl CollectionBulkDeleteRequestModel
impl CollectionBulkDeleteRequestModel
pub fn new(ids: Vec<Uuid>) -> CollectionBulkDeleteRequestModel
Trait Implementations§
Source§impl Clone for CollectionBulkDeleteRequestModel
impl Clone for CollectionBulkDeleteRequestModel
Source§fn clone(&self) -> CollectionBulkDeleteRequestModel
fn clone(&self) -> CollectionBulkDeleteRequestModel
Returns a copy 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 Default for CollectionBulkDeleteRequestModel
impl Default for CollectionBulkDeleteRequestModel
Source§fn default() -> CollectionBulkDeleteRequestModel
fn default() -> CollectionBulkDeleteRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CollectionBulkDeleteRequestModel
impl<'de> Deserialize<'de> for CollectionBulkDeleteRequestModel
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 CollectionBulkDeleteRequestModel
impl PartialEq for CollectionBulkDeleteRequestModel
Source§fn eq(&self, other: &CollectionBulkDeleteRequestModel) -> bool
fn eq(&self, other: &CollectionBulkDeleteRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CollectionBulkDeleteRequestModel
Auto Trait Implementations§
impl Freeze for CollectionBulkDeleteRequestModel
impl RefUnwindSafe for CollectionBulkDeleteRequestModel
impl Send for CollectionBulkDeleteRequestModel
impl Sync for CollectionBulkDeleteRequestModel
impl Unpin for CollectionBulkDeleteRequestModel
impl UnwindSafe for CollectionBulkDeleteRequestModel
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