pub struct BatchDeleteRecordsRequest {
pub app_id: i32,
pub record_ids: Vec<i32>,
}Expand description
Request to delete a batch of records.
Fields§
§app_id: i32§record_ids: Vec<i32>Trait Implementations§
Source§impl Clone for BatchDeleteRecordsRequest
impl Clone for BatchDeleteRecordsRequest
Source§fn clone(&self) -> BatchDeleteRecordsRequest
fn clone(&self) -> BatchDeleteRecordsRequest
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 BatchDeleteRecordsRequest
impl Debug for BatchDeleteRecordsRequest
Auto Trait Implementations§
impl Freeze for BatchDeleteRecordsRequest
impl RefUnwindSafe for BatchDeleteRecordsRequest
impl Send for BatchDeleteRecordsRequest
impl Sync for BatchDeleteRecordsRequest
impl Unpin for BatchDeleteRecordsRequest
impl UnsafeUnpin for BatchDeleteRecordsRequest
impl UnwindSafe for BatchDeleteRecordsRequest
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