Struct google_sheets4::Response
source · pub struct Response {Show 17 fields
pub duplicate_filter_view: Option<DuplicateFilterViewResponse>,
pub create_developer_metadata: Option<CreateDeveloperMetadataResponse>,
pub delete_dimension_group: Option<DeleteDimensionGroupResponse>,
pub update_conditional_format_rule: Option<UpdateConditionalFormatRuleResponse>,
pub add_named_range: Option<AddNamedRangeResponse>,
pub add_protected_range: Option<AddProtectedRangeResponse>,
pub update_developer_metadata: Option<UpdateDeveloperMetadataResponse>,
pub add_dimension_group: Option<AddDimensionGroupResponse>,
pub add_banding: Option<AddBandingResponse>,
pub add_filter_view: Option<AddFilterViewResponse>,
pub update_embedded_object_position: Option<UpdateEmbeddedObjectPositionResponse>,
pub duplicate_sheet: Option<DuplicateSheetResponse>,
pub delete_developer_metadata: Option<DeleteDeveloperMetadataResponse>,
pub add_chart: Option<AddChartResponse>,
pub add_sheet: Option<AddSheetResponse>,
pub find_replace: Option<FindReplaceResponse>,
pub delete_conditional_format_rule: Option<DeleteConditionalFormatRuleResponse>,
}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§
§duplicate_filter_view: Option<DuplicateFilterViewResponse>A reply from duplicating a filter view.
create_developer_metadata: Option<CreateDeveloperMetadataResponse>A reply from creating a developer metadata entry.
delete_dimension_group: Option<DeleteDimensionGroupResponse>A reply from deleting a dimension group.
update_conditional_format_rule: Option<UpdateConditionalFormatRuleResponse>A reply from updating a conditional format rule.
add_named_range: Option<AddNamedRangeResponse>A reply from adding a named range.
add_protected_range: Option<AddProtectedRangeResponse>A reply from adding a protected range.
update_developer_metadata: Option<UpdateDeveloperMetadataResponse>A reply from updating a developer metadata entry.
add_dimension_group: Option<AddDimensionGroupResponse>A reply from adding a dimension group.
add_banding: Option<AddBandingResponse>A reply from adding a banded range.
add_filter_view: Option<AddFilterViewResponse>A reply from adding a filter view.
update_embedded_object_position: Option<UpdateEmbeddedObjectPositionResponse>A reply from updating an embedded object’s position.
duplicate_sheet: Option<DuplicateSheetResponse>A reply from duplicating a sheet.
delete_developer_metadata: Option<DeleteDeveloperMetadataResponse>A reply from deleting a developer metadata entry.
add_chart: Option<AddChartResponse>A reply from adding a chart.
add_sheet: Option<AddSheetResponse>A reply from adding a sheet.
find_replace: Option<FindReplaceResponse>A reply from doing a find/replace.
delete_conditional_format_rule: Option<DeleteConditionalFormatRuleResponse>A reply from deleting a conditional format rule.
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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