pub struct Range<I: Indexed> {
pub row_start: Row<I>,
pub row_end: Row<I>,
pub col_start: Column<I>,
pub col_end: Column<I>,
}
Fields§
§row_start: Row<I>
§row_end: Row<I>
§col_start: Column<I>
§col_end: Column<I>
Implementations§
Source§impl Range<OneIndexed>
impl Range<OneIndexed>
pub fn zero_indexed(self) -> Range<ZeroIndexed>
Source§impl Range<ZeroIndexed>
impl Range<ZeroIndexed>
pub fn one_indexed(self) -> Range<OneIndexed>
Trait Implementations§
Source§impl<I: Ord + Indexed> Ord for Range<I>
impl<I: Ord + Indexed> Ord for Range<I>
Source§impl<I: PartialOrd + Indexed> PartialOrd for Range<I>
impl<I: PartialOrd + Indexed> PartialOrd for Range<I>
impl<I: Indexed> Copy for Range<I>
impl<I: Eq + Indexed> Eq for Range<I>
impl<I: Indexed> StructuralPartialEq for Range<I>
Auto Trait Implementations§
impl<I> Freeze for Range<I>
impl<I> RefUnwindSafe for Range<I>where
I: RefUnwindSafe,
impl<I> Send for Range<I>where
I: Send,
impl<I> Sync for Range<I>where
I: Sync,
impl<I> Unpin for Range<I>where
I: Unpin,
impl<I> UnwindSafe for Range<I>where
I: UnwindSafe,
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