pub struct VisibleRange {
pub start: usize,
pub end: usize,
pub pad_top: f64,
pub pad_bottom: f64,
pub total_height: f64,
}Fields§
§start: usize§end: usize§pad_top: f64§pad_bottom: f64§total_height: f64Trait Implementations§
Source§impl Clone for VisibleRange
impl Clone for VisibleRange
Source§fn clone(&self) -> VisibleRange
fn clone(&self) -> VisibleRange
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 VisibleRange
impl Debug for VisibleRange
Source§impl PartialEq for VisibleRange
impl PartialEq for VisibleRange
impl Copy for VisibleRange
impl StructuralPartialEq for VisibleRange
Auto Trait Implementations§
impl Freeze for VisibleRange
impl RefUnwindSafe for VisibleRange
impl Send for VisibleRange
impl Sync for VisibleRange
impl Unpin for VisibleRange
impl UnsafeUnpin for VisibleRange
impl UnwindSafe for VisibleRange
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