pub struct WorkbookRangeView {
pub cell_addresses: Json,
pub column_count: i32,
pub formulas: Json,
pub formulas_local: Json,
pub formulas_r1_c1: Json,
pub index: i32,
pub number_format: Json,
pub row_count: i32,
pub text: Json,
pub value_types: Json,
pub values: Json,
pub rows: Vec<WorkbookRangeView>,
}
Fields§
§cell_addresses: Json
§column_count: i32
§formulas: Json
§formulas_local: Json
§formulas_r1_c1: Json
§index: i32
§number_format: Json
§row_count: i32
§text: Json
§value_types: Json
§values: Json
§rows: Vec<WorkbookRangeView>
Trait Implementations§
Source§impl Clone for WorkbookRangeView
impl Clone for WorkbookRangeView
Source§fn clone(&self) -> WorkbookRangeView
fn clone(&self) -> WorkbookRangeView
Returns a duplicate 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 WorkbookRangeView
impl Debug for WorkbookRangeView
Source§impl<'de> Deserialize<'de> for WorkbookRangeView
impl<'de> Deserialize<'de> for WorkbookRangeView
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
Source§impl PartialEq for WorkbookRangeView
impl PartialEq for WorkbookRangeView
Source§impl Serialize for WorkbookRangeView
impl Serialize for WorkbookRangeView
impl Eq for WorkbookRangeView
impl StructuralPartialEq for WorkbookRangeView
Auto Trait Implementations§
impl Freeze for WorkbookRangeView
impl RefUnwindSafe for WorkbookRangeView
impl Send for WorkbookRangeView
impl Sync for WorkbookRangeView
impl Unpin for WorkbookRangeView
impl UnwindSafe for WorkbookRangeView
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more