[][src]Struct google_sheets4::DeveloperMetadataLocation

pub struct DeveloperMetadataLocation {
    pub location_type: Option<String>,
    pub dimension_range: Option<DimensionRange>,
    pub sheet_id: Option<i32>,
    pub spreadsheet: Option<bool>,
}

A location where metadata may be associated in a spreadsheet.

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

Fields

location_type: Option<String>

The type of location this object represents. This field is read-only.

dimension_range: Option<DimensionRange>

Represents the row or column when metadata is associated with a dimension. The specified DimensionRange must represent a single row or column; it cannot be unbounded or span multiple rows or columns.

sheet_id: Option<i32>

The ID of the sheet when metadata is associated with an entire sheet.

spreadsheet: Option<bool>

True when metadata is associated with an entire spreadsheet.

Trait Implementations

impl Clone for DeveloperMetadataLocation[src]

impl Debug for DeveloperMetadataLocation[src]

impl Default for DeveloperMetadataLocation[src]

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

impl Part for DeveloperMetadataLocation[src]

impl Serialize for DeveloperMetadataLocation[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any