[][src]Struct google_sheets4::BandedRange

pub struct BandedRange {
    pub range: Option<GridRange>,
    pub column_properties: Option<BandingProperties>,
    pub row_properties: Option<BandingProperties>,
    pub banded_range_id: Option<i32>,
}

A banded (alternating colors) range in a sheet.

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

Fields

range: Option<GridRange>

The range over which these properties are applied.

column_properties: Option<BandingProperties>

Properties for column bands. These properties are applied on a column- by-column basis throughout all the columns in the range. At least one of row_properties or column_properties must be specified.

row_properties: Option<BandingProperties>

Properties for row bands. These properties are applied on a row-by-row basis throughout all the rows in the range. At least one of row_properties or column_properties must be specified.

banded_range_id: Option<i32>

The id of the banded range.

Trait Implementations

impl Clone for BandedRange[src]

impl Debug for BandedRange[src]

impl Default for BandedRange[src]

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

impl Part for BandedRange[src]

impl Serialize for BandedRange[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