pub struct PivotLocation {
pub reference: String,
pub first_header_row: u32,
pub first_data_row: u32,
pub first_data_col: u32,
}Expand description
Location of the pivot table within the worksheet.
Fields§
§reference: String§first_header_row: u32§first_data_row: u32§first_data_col: u32Trait Implementations§
Source§impl Clone for PivotLocation
impl Clone for PivotLocation
Source§fn clone(&self) -> PivotLocation
fn clone(&self) -> PivotLocation
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 PivotLocation
impl Debug for PivotLocation
Source§impl<'de> Deserialize<'de> for PivotLocation
impl<'de> Deserialize<'de> for PivotLocation
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 PivotLocation
impl PartialEq for PivotLocation
Source§impl Serialize for PivotLocation
impl Serialize for PivotLocation
impl StructuralPartialEq for PivotLocation
Auto Trait Implementations§
impl Freeze for PivotLocation
impl RefUnwindSafe for PivotLocation
impl Send for PivotLocation
impl Sync for PivotLocation
impl Unpin for PivotLocation
impl UnwindSafe for PivotLocation
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