Struct google_sheets4::DimensionRange
source · pub struct DimensionRange {
pub end_index: Option<i32>,
pub start_index: Option<i32>,
pub dimension: Option<String>,
pub sheet_id: Option<i32>,
}Expand description
A range along a single dimension on a sheet. All indexes are zero-based. Indexes are half open: the start index is inclusive and the end index is exclusive. Missing indexes indicate the range is unbounded on that side.
This type is not used in any activity, and only used as part of another schema.
Fields§
§end_index: Option<i32>The end (exclusive) of the span, or not set if unbounded.
start_index: Option<i32>The start (inclusive) of the span, or not set if unbounded.
dimension: Option<String>The dimension of the span.
sheet_id: Option<i32>The sheet this span is on.
Trait Implementations§
source§impl Clone for DimensionRange
impl Clone for DimensionRange
source§fn clone(&self) -> DimensionRange
fn clone(&self) -> DimensionRange
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DimensionRange
impl Debug for DimensionRange
source§impl Default for DimensionRange
impl Default for DimensionRange
source§fn default() -> DimensionRange
fn default() -> DimensionRange
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DimensionRange
impl<'de> Deserialize<'de> for DimensionRange
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more