pub struct FoldRange {
pub start_row: usize,
pub end_row: usize,
}Expand description
A collapsible row span with inclusive bounds. The start row is the header
and is never hidden itself; hiding applies to start_row + 1..=end_row.
Fields§
§start_row: usizeFirst row of the fold; always visible.
end_row: usizeLast hidden row while collapsed (inclusive).
Trait Implementations§
impl Copy for FoldRange
impl Eq for FoldRange
impl StructuralPartialEq for FoldRange
Auto Trait Implementations§
impl Freeze for FoldRange
impl RefUnwindSafe for FoldRange
impl Send for FoldRange
impl Sync for FoldRange
impl Unpin for FoldRange
impl UnsafeUnpin for FoldRange
impl UnwindSafe for FoldRange
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