pub struct Response {Show 24 fields
pub add_banding: Option<AddBandingResponse>,
pub add_chart: Option<AddChartResponse>,
pub add_data_source: Option<AddDataSourceResponse>,
pub add_dimension_group: Option<AddDimensionGroupResponse>,
pub add_filter_view: Option<AddFilterViewResponse>,
pub add_named_range: Option<AddNamedRangeResponse>,
pub add_protected_range: Option<AddProtectedRangeResponse>,
pub add_sheet: Option<AddSheetResponse>,
pub add_slicer: Option<AddSlicerResponse>,
pub cancel_data_source_refresh: Option<CancelDataSourceRefreshResponse>,
pub create_developer_metadata: Option<CreateDeveloperMetadataResponse>,
pub delete_conditional_format_rule: Option<DeleteConditionalFormatRuleResponse>,
pub delete_developer_metadata: Option<DeleteDeveloperMetadataResponse>,
pub delete_dimension_group: Option<DeleteDimensionGroupResponse>,
pub delete_duplicates: Option<DeleteDuplicatesResponse>,
pub duplicate_filter_view: Option<DuplicateFilterViewResponse>,
pub duplicate_sheet: Option<DuplicateSheetResponse>,
pub find_replace: Option<FindReplaceResponse>,
pub refresh_data_source: Option<RefreshDataSourceResponse>,
pub trim_whitespace: Option<TrimWhitespaceResponse>,
pub update_conditional_format_rule: Option<UpdateConditionalFormatRuleResponse>,
pub update_data_source: Option<UpdateDataSourceResponse>,
pub update_developer_metadata: Option<UpdateDeveloperMetadataResponse>,
pub update_embedded_object_position: Option<UpdateEmbeddedObjectPositionResponse>,
}
Expand description
A single response from an update.
This type is not used in any activity, and only used as part of another schema.
Fields§
§add_banding: Option<AddBandingResponse>
A reply from adding a banded range.
add_chart: Option<AddChartResponse>
A reply from adding a chart.
add_data_source: Option<AddDataSourceResponse>
A reply from adding a data source.
add_dimension_group: Option<AddDimensionGroupResponse>
A reply from adding a dimension group.
add_filter_view: Option<AddFilterViewResponse>
A reply from adding a filter view.
add_named_range: Option<AddNamedRangeResponse>
A reply from adding a named range.
add_protected_range: Option<AddProtectedRangeResponse>
A reply from adding a protected range.
add_sheet: Option<AddSheetResponse>
A reply from adding a sheet.
add_slicer: Option<AddSlicerResponse>
A reply from adding a slicer.
cancel_data_source_refresh: Option<CancelDataSourceRefreshResponse>
A reply from cancelling data source object refreshes.
create_developer_metadata: Option<CreateDeveloperMetadataResponse>
A reply from creating a developer metadata entry.
delete_conditional_format_rule: Option<DeleteConditionalFormatRuleResponse>
A reply from deleting a conditional format rule.
delete_developer_metadata: Option<DeleteDeveloperMetadataResponse>
A reply from deleting a developer metadata entry.
delete_dimension_group: Option<DeleteDimensionGroupResponse>
A reply from deleting a dimension group.
delete_duplicates: Option<DeleteDuplicatesResponse>
A reply from removing rows containing duplicate values.
duplicate_filter_view: Option<DuplicateFilterViewResponse>
A reply from duplicating a filter view.
duplicate_sheet: Option<DuplicateSheetResponse>
A reply from duplicating a sheet.
find_replace: Option<FindReplaceResponse>
A reply from doing a find/replace.
refresh_data_source: Option<RefreshDataSourceResponse>
A reply from refreshing data source objects.
trim_whitespace: Option<TrimWhitespaceResponse>
A reply from trimming whitespace.
update_conditional_format_rule: Option<UpdateConditionalFormatRuleResponse>
A reply from updating a conditional format rule.
update_data_source: Option<UpdateDataSourceResponse>
A reply from updating a data source.
update_developer_metadata: Option<UpdateDeveloperMetadataResponse>
A reply from updating a developer metadata entry.
update_embedded_object_position: Option<UpdateEmbeddedObjectPositionResponse>
A reply from updating an embedded object’s position.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Response
impl<'de> Deserialize<'de> for Response
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>,
impl Part for Response
Auto Trait Implementations§
impl Freeze for Response
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
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