Struct google_sheets4::api::Sheet [−][src]
A sheet in a spreadsheet.
This type is not used in any activity, and only used as part of another schema.
Fields
banded_ranges: Option<Vec<BandedRange>>The banded (alternating colors) ranges on this sheet.
basic_filter: Option<BasicFilter>The filter on this sheet, if any.
charts: Option<Vec<EmbeddedChart>>The specifications of every chart on this sheet.
column_groups: Option<Vec<DimensionGroup>>All column groups on this sheet, ordered by increasing range start index, then by group depth.
conditional_formats: Option<Vec<ConditionalFormatRule>>The conditional format rules in this sheet.
data: Option<Vec<GridData>>Data in the grid, if this is a grid sheet. The number of GridData objects returned is dependent on the number of ranges requested on this sheet. For example, if this is representing Sheet1, and the spreadsheet was requested with ranges Sheet1!A1:C10 and Sheet1!D15:E20, then the first GridData will have a startRow/startColumn of 0, while the second one will have startRow 14 (zero-based row 15), and startColumn 3 (zero-based column D). For a DATA_SOURCE sheet, you can not request a specific range, the GridData contains all the values.
developer_metadata: Option<Vec<DeveloperMetadata>>The developer metadata associated with a sheet.
filter_views: Option<Vec<FilterView>>The filter views in this sheet.
merges: Option<Vec<GridRange>>The ranges that are merged together.
properties: Option<SheetProperties>The properties of the sheet.
protected_ranges: Option<Vec<ProtectedRange>>The protected ranges in this sheet.
row_groups: Option<Vec<DimensionGroup>>All row groups on this sheet, ordered by increasing range start index, then by group depth.
slicers: Option<Vec<Slicer>>The slicers on this sheet.
Trait Implementations
impl Clone for Sheet[src]
impl Debug for Sheet[src]
impl Default for Sheet[src]
impl<'de> Deserialize<'de> for Sheet[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for Sheet[src]
impl Serialize for Sheet[src]
Auto Trait Implementations
impl RefUnwindSafe for Sheet
impl Send for Sheet
impl Sync for Sheet
impl Unpin for Sheet
impl UnwindSafe for Sheet
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>,