[][src]Struct graph_rs_types::entitytypes::WorkbookTable

pub struct WorkbookTable {
    pub highlight_first_column: bool,
    pub highlight_last_column: bool,
    pub legacy_id: String,
    pub name: String,
    pub show_banded_columns: bool,
    pub show_banded_rows: bool,
    pub show_filter_button: bool,
    pub show_headers: bool,
    pub show_totals: bool,
    pub style: String,
    pub columns: Vec<WorkbookTableColumn>,
    pub rows: Vec<WorkbookTableRow>,
    pub sort: WorkbookTableSort,
    pub worksheet: WorkbookWorksheet,
}

Fields

highlight_first_column: boolhighlight_last_column: boollegacy_id: Stringname: Stringshow_banded_columns: boolshow_banded_rows: boolshow_filter_button: boolshow_headers: boolshow_totals: boolstyle: Stringcolumns: Vec<WorkbookTableColumn>rows: Vec<WorkbookTableRow>sort: WorkbookTableSortworksheet: WorkbookWorksheet

Trait Implementations

impl Eq for WorkbookTable[src]

impl Clone for WorkbookTable[src]

impl PartialEq<WorkbookTable> for WorkbookTable[src]

impl Debug for WorkbookTable[src]

impl Serialize for WorkbookTable[src]

impl<'de> Deserialize<'de> for WorkbookTable[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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]