pub struct RangeAddress {
pub sheet: String,
pub start_row: u32,
pub start_col: u32,
pub end_row: u32,
pub end_col: u32,
}Fields§
§sheet: String§start_row: u32§start_col: u32§end_row: u32§end_col: u32Implementations§
Trait Implementations§
Source§impl Clone for RangeAddress
impl Clone for RangeAddress
Source§fn clone(&self) -> RangeAddress
fn clone(&self) -> RangeAddress
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 RangeAddress
impl Debug for RangeAddress
Source§impl Hash for RangeAddress
impl Hash for RangeAddress
Source§impl PartialEq for RangeAddress
impl PartialEq for RangeAddress
impl Eq for RangeAddress
impl StructuralPartialEq for RangeAddress
Auto Trait Implementations§
impl Freeze for RangeAddress
impl RefUnwindSafe for RangeAddress
impl Send for RangeAddress
impl Sync for RangeAddress
impl Unpin for RangeAddress
impl UnwindSafe for RangeAddress
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