[−][src]Struct google_sheets4::Request
A single kind of update to apply to a spreadsheet.
This type is not used in any activity, and only used as part of another schema.
Fields
duplicate_filter_view: Option<DuplicateFilterViewRequest>Duplicates a filter view.
sort_range: Option<SortRangeRequest>Sorts data in a range.
update_embedded_object_position: Option<UpdateEmbeddedObjectPositionRequest>Updates an embedded object's (e.g. chart, image) position.
update_conditional_format_rule: Option<UpdateConditionalFormatRuleRequest>Updates an existing conditional format rule.
update_dimension_group: Option<UpdateDimensionGroupRequest>Updates the state of the specified group.
delete_dimension: Option<DeleteDimensionRequest>Deletes rows or columns in a sheet.
cut_paste: Option<CutPasteRequest>Cuts data from one area and pastes it to another.
delete_embedded_object: Option<DeleteEmbeddedObjectRequest>Deletes an embedded object (e.g, chart, image) in a sheet.
paste_data: Option<PasteDataRequest>Pastes data (HTML or delimited) into a sheet.
append_cells: Option<AppendCellsRequest>Appends cells after the last row with data in a sheet.
duplicate_sheet: Option<DuplicateSheetRequest>Duplicates a sheet.
update_sheet_properties: Option<UpdateSheetPropertiesRequest>Updates a sheet's properties.
add_chart: Option<AddChartRequest>Adds a chart.
add_conditional_format_rule: Option<AddConditionalFormatRuleRequest>Adds a new conditional format rule.
delete_banding: Option<DeleteBandingRequest>Removes a banded range
repeat_cell: Option<RepeatCellRequest>Repeats a single cell across a range.
find_replace: Option<FindReplaceRequest>Finds and replaces occurrences of some text with other text.
auto_fill: Option<AutoFillRequest>Automatically fills in more data based on existing data.
set_basic_filter: Option<SetBasicFilterRequest>Sets the basic filter on a sheet.
update_spreadsheet_properties: Option<UpdateSpreadsheetPropertiesRequest>Updates the spreadsheet's properties.
update_cells: Option<UpdateCellsRequest>Updates many cells at once.
randomize_range: Option<RandomizeRangeRequest>Randomizes the order of the rows in a range.
append_dimension: Option<AppendDimensionRequest>Appends dimensions to the end of a sheet.
update_banding: Option<UpdateBandingRequest>Updates a banded range
add_banding: Option<AddBandingRequest>Adds a new banded range
auto_resize_dimensions: Option<AutoResizeDimensionsRequest>Automatically resizes one or more dimensions based on the contents of the cells in that dimension.
update_dimension_properties: Option<UpdateDimensionPropertiesRequest>Updates dimensions' properties.
text_to_columns: Option<TextToColumnsRequest>Converts a column of text into many columns of text.
unmerge_cells: Option<UnmergeCellsRequest>Unmerges merged cells.
set_data_validation: Option<SetDataValidationRequest>Sets data validation for one or more cells.
delete_range: Option<DeleteRangeRequest>Deletes a range of cells from a sheet, shifting the remaining cells.
clear_basic_filter: Option<ClearBasicFilterRequest>Clears the basic filter on a sheet.
add_named_range: Option<AddNamedRangeRequest>Adds a named range.
update_chart_spec: Option<UpdateChartSpecRequest>Updates a chart's specifications.
insert_range: Option<InsertRangeRequest>Inserts new cells in a sheet, shifting the existing cells.
update_developer_metadata: Option<UpdateDeveloperMetadataRequest>Updates an existing developer metadata entry
move_dimension: Option<MoveDimensionRequest>Moves rows or columns to another location in a sheet.
update_protected_range: Option<UpdateProtectedRangeRequest>Updates a protected range.
create_developer_metadata: Option<CreateDeveloperMetadataRequest>Creates new developer metadata
delete_dimension_group: Option<DeleteDimensionGroupRequest>Deletes a group over the specified range.
merge_cells: Option<MergeCellsRequest>Merges cells together.
delete_protected_range: Option<DeleteProtectedRangeRequest>Deletes a protected range.
add_filter_view: Option<AddFilterViewRequest>Adds a filter view.
delete_developer_metadata: Option<DeleteDeveloperMetadataRequest>Deletes developer metadata
delete_sheet: Option<DeleteSheetRequest>Deletes a sheet.
update_borders: Option<UpdateBordersRequest>Updates the borders in a range of cells.
add_protected_range: Option<AddProtectedRangeRequest>Adds a protected range.
copy_paste: Option<CopyPasteRequest>Copies data from one area and pastes it to another.
add_sheet: Option<AddSheetRequest>Adds a sheet.
delete_named_range: Option<DeleteNamedRangeRequest>Deletes a named range.
delete_filter_view: Option<DeleteFilterViewRequest>Deletes a filter view from a sheet.
update_named_range: Option<UpdateNamedRangeRequest>Updates a named range.
insert_dimension: Option<InsertDimensionRequest>Inserts new rows or columns in a sheet.
update_filter_view: Option<UpdateFilterViewRequest>Updates the properties of a filter view.
delete_conditional_format_rule: Option<DeleteConditionalFormatRuleRequest>Deletes an existing conditional format rule.
add_dimension_group: Option<AddDimensionGroupRequest>Creates a group over the specified range.
Trait Implementations
impl Part for Request[src]
impl Clone for Request[src]
impl Default for Request[src]
impl Debug for Request[src]
impl Serialize for Request[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de> Deserialize<'de> for Request[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
impl RefUnwindSafe for Request
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Typeable for T where
T: Any,
T: Any,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,