pub struct FinalizeNeedsReviewEntriesParams<'a> {
pub dataset_id: &'a str,
pub indexes: &'a [u32],
pub keys: Vec<DataToAddForKey<'a>>,
pub dataset_version_id: Option<&'a str>,
}Fields§
§dataset_id: &'a strThe dataset’s id.
indexes: &'a [u32]An array containing the index to remove from ‘needs review’.
keys: Vec<DataToAddForKey<'a>>New data to add to the dataset, in place of the entries removed from ‘needs review’. There should be one entry for each key in the dataset, and the length of the data in each key must equal the length of indexes.
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 FinalizeNeedsReviewEntriesParams<'a>
impl<'a> Clone for FinalizeNeedsReviewEntriesParams<'a>
Source§fn clone(&self) -> FinalizeNeedsReviewEntriesParams<'a>
fn clone(&self) -> FinalizeNeedsReviewEntriesParams<'a>
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<'a> Debug for FinalizeNeedsReviewEntriesParams<'a>
impl<'a> Debug for FinalizeNeedsReviewEntriesParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for FinalizeNeedsReviewEntriesParams<'a>
impl<'a> RefUnwindSafe for FinalizeNeedsReviewEntriesParams<'a>
impl<'a> Send for FinalizeNeedsReviewEntriesParams<'a>
impl<'a> Sync for FinalizeNeedsReviewEntriesParams<'a>
impl<'a> Unpin for FinalizeNeedsReviewEntriesParams<'a>
impl<'a> UnwindSafe for FinalizeNeedsReviewEntriesParams<'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