Struct sheets::types::DimensionRange
source · pub struct DimensionRange {
pub dimension: Option<Dimension>,
pub end_index: i64,
pub sheet_id: i64,
pub start_index: i64,
}
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.
Fields§
§dimension: Option<Dimension>
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.
end_index: i64
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.
sheet_id: i64
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.
start_index: i64
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.
Trait Implementations§
source§impl Clone for DimensionRange
impl Clone for DimensionRange
source§fn clone(&self) -> DimensionRange
fn clone(&self) -> DimensionRange
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DimensionRange
impl Debug for DimensionRange
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>,
source§impl JsonSchema for DimensionRange
impl JsonSchema for DimensionRange
source§fn schema_name() -> String
fn schema_name() -> String
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moresource§impl PartialEq<DimensionRange> for DimensionRange
impl PartialEq<DimensionRange> for DimensionRange
source§fn eq(&self, other: &DimensionRange) -> bool
fn eq(&self, other: &DimensionRange) -> bool
self
and other
values to be equal, and is used
by ==
.