pub struct ParsedRange {
pub left: ParsedReference,
pub right: Option<ParsedReference>,
}Expand description
If right is None it is just a reference
Column ranges like D:D will have absolute_row=true and left.row=1 and right.row=LAST_ROW
Row ranges like 5:5 will have absolute_column=true and left.column=1 and right.column=LAST_COLUMN
Fields§
§left: ParsedReference§right: Option<ParsedReference>Auto Trait Implementations§
impl Freeze for ParsedRange
impl RefUnwindSafe for ParsedRange
impl Send for ParsedRange
impl Sync for ParsedRange
impl Unpin for ParsedRange
impl UnsafeUnpin for ParsedRange
impl UnwindSafe for ParsedRange
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