Struct decthings_api::rpc::dataset::RemoveEntriesParams
source · pub struct RemoveEntriesParams<'a> {
pub dataset_id: &'a str,
pub entries: &'a [u32],
pub dataset_version_id: Option<&'a str>,
}
Fields§
§dataset_id: &'a str
The dataset’s id.
entries: &'a [u32]
An array of indexes of the elements to remove.
dataset_version_id: Option<&'a str>
If specified, the operation will only be performed if the current dataset versionId is equal to the specified string.
Trait Implementations§
source§impl<'a> Clone for RemoveEntriesParams<'a>
impl<'a> Clone for RemoveEntriesParams<'a>
source§fn clone(&self) -> RemoveEntriesParams<'a>
fn clone(&self) -> RemoveEntriesParams<'a>
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<'a> Debug for RemoveEntriesParams<'a>
impl<'a> Debug for RemoveEntriesParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for RemoveEntriesParams<'a>
impl<'a> RefUnwindSafe for RemoveEntriesParams<'a>
impl<'a> Send for RemoveEntriesParams<'a>
impl<'a> Sync for RemoveEntriesParams<'a>
impl<'a> Unpin for RemoveEntriesParams<'a>
impl<'a> UnwindSafe for RemoveEntriesParams<'a>
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