[][src]Struct google_sheets4::SpreadsheetProperties

pub struct SpreadsheetProperties {
    pub auto_recalc: Option<String>,
    pub default_format: Option<CellFormat>,
    pub title: Option<String>,
    pub locale: Option<String>,
    pub time_zone: Option<String>,
    pub iterative_calculation_settings: Option<IterativeCalculationSettings>,
}

Properties of a spreadsheet.

This type is not used in any activity, and only used as part of another schema.

Fields

auto_recalc: Option<String>

The amount of time to wait before volatile functions are recalculated.

default_format: Option<CellFormat>

The default format of all cells in the spreadsheet. CellData.effectiveFormat will not be set if the cell's format is equal to this default format. This field is read-only.

title: Option<String>

The title of the spreadsheet.

locale: Option<String>

The locale of the spreadsheet in one of the following formats:

  • an ISO 639-1 language code such as en

  • an ISO 639-2 language code such as fil, if no 639-1 code exists

  • a combination of the ISO language code and country code, such as en_US

Note: when updating this field, not all locales/languages are supported.

time_zone: Option<String>

The time zone of the spreadsheet, in CLDR format such as America/New_York. If the time zone isn't recognized, this may be a custom time zone such as GMT-07:00.

iterative_calculation_settings: Option<IterativeCalculationSettings>

Determines whether and how circular references are resolved with iterative calculation. Absence of this field means that circular references will result in calculation errors.

Trait Implementations

impl Part for SpreadsheetProperties[src]

impl Default for SpreadsheetProperties[src]

impl Clone for SpreadsheetProperties[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SpreadsheetProperties[src]

impl Serialize for SpreadsheetProperties[src]

impl<'de> Deserialize<'de> for SpreadsheetProperties[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]