pub struct DeleteDuplicatesRequest {
pub comparison_columns: Option<Vec<DimensionRange>>,
pub range: Option<GridRange>,
}
Expand description
Removes rows within this range that contain values in the specified columns that are duplicates of values in any previous row. Rows with identical values but different letter cases, formatting, or formulas are considered to be duplicates. This request also removes duplicate rows hidden from view (for example, due to a filter). When removing duplicates, the first instance of each duplicate row scanning from the top downwards is kept in the resulting range. Content outside of the specified range isn’t removed, and rows considered duplicates do not have to be adjacent to each other in the range.
This type is not used in any activity, and only used as part of another schema.
Fields§
§comparison_columns: Option<Vec<DimensionRange>>
The columns in the range to analyze for duplicate values. If no columns are selected then all columns are analyzed for duplicates.
range: Option<GridRange>
The range to remove duplicates rows from.
Trait Implementations§
Source§impl Clone for DeleteDuplicatesRequest
impl Clone for DeleteDuplicatesRequest
Source§fn clone(&self) -> DeleteDuplicatesRequest
fn clone(&self) -> DeleteDuplicatesRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for DeleteDuplicatesRequest
impl Debug for DeleteDuplicatesRequest
Source§impl Default for DeleteDuplicatesRequest
impl Default for DeleteDuplicatesRequest
Source§fn default() -> DeleteDuplicatesRequest
fn default() -> DeleteDuplicatesRequest
Source§impl<'de> Deserialize<'de> for DeleteDuplicatesRequest
impl<'de> Deserialize<'de> for DeleteDuplicatesRequest
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>,
Source§impl Serialize for DeleteDuplicatesRequest
impl Serialize for DeleteDuplicatesRequest
impl Part for DeleteDuplicatesRequest
Auto Trait Implementations§
impl Freeze for DeleteDuplicatesRequest
impl RefUnwindSafe for DeleteDuplicatesRequest
impl Send for DeleteDuplicatesRequest
impl Sync for DeleteDuplicatesRequest
impl Unpin for DeleteDuplicatesRequest
impl UnwindSafe for DeleteDuplicatesRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more