Struct google_sheets4::api::SheetProperties [−][src]
Properties of a sheet.
Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- sheets copy to spreadsheets (response)
Fields
data_source_sheet_properties: Option<DataSourceSheetProperties>Output only. If present, the field contains DATA_SOURCE sheet specific properties.
grid_properties: Option<GridProperties>Additional properties of the sheet if this sheet is a grid. (If the sheet is an object sheet, containing a chart or image, then this field will be absent.) When writing it is an error to set any grid properties on non-grid sheets. If this sheet is a DATA_SOURCE sheet, this field is output only but contains the properties that reflect how a data source sheet is rendered in the UI, e.g. row_count.
True if the sheet is hidden in the UI, false if it's visible.
index: Option<i32>The index of the sheet within the spreadsheet. When adding or updating sheet properties, if this field is excluded then the sheet is added or moved to the end of the sheet list. When updating sheet indices or inserting sheets, movement is considered in "before the move" indexes. For example, if there were 3 sheets (S1, S2, S3) in order to move S1 ahead of S2 the index would have to be set to 2. A sheet index update request is ignored if the requested index is identical to the sheets current index or if the requested new index is equal to the current sheet index + 1.
right_to_left: Option<bool>True if the sheet is an RTL sheet instead of an LTR sheet.
sheet_id: Option<i32>The ID of the sheet. Must be non-negative. This field cannot be changed once set.
sheet_type: Option<String>The type of sheet. Defaults to GRID. This field cannot be changed once set.
tab_color: Option<Color>The color of the tab in the UI.
tab_color_style: Option<ColorStyle>The color of the tab in the UI. If tab_color is also set, this field takes precedence.
title: Option<String>The name of the sheet.
Trait Implementations
impl Clone for SheetProperties[src]
fn clone(&self) -> SheetProperties[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for SheetProperties[src]
impl Default for SheetProperties[src]
fn default() -> SheetProperties[src]
impl<'de> Deserialize<'de> for SheetProperties[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl ResponseResult for SheetProperties[src]
impl Serialize for SheetProperties[src]
Auto Trait Implementations
impl RefUnwindSafe for SheetProperties[src]
impl Send for SheetProperties[src]
impl Sync for SheetProperties[src]
impl Unpin for SheetProperties[src]
impl UnwindSafe for SheetProperties[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[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.
pub fn to_owned(&self) -> T[src]
pub 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 = Infallible
The type returned in the event of a conversion error.
pub 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>,