pub struct Range {
pub min: Number,
pub max: Number,
}
Fields§
§min: Number
§max: Number
Implementations§
Source§impl Range
impl Range
pub fn new(min: Number, max: Number) -> Range
pub fn contains(&self, pos: Number) -> bool
pub fn get_distance(&self) -> Number
pub fn project_inclusive(&self, pixel: Number, to: &Range) -> Option<Number>
pub fn project(&self, pixel: Number, to: &Range) -> Number
pub fn move_by(&mut self, delta: Number)
pub fn zoom_by(&mut self, factor: Number)
Trait Implementations§
impl Copy for Range
impl StructuralPartialEq for Range
Auto Trait Implementations§
impl Freeze for Range
impl RefUnwindSafe for Range
impl Send for Range
impl Sync for Range
impl Unpin for Range
impl UnwindSafe for Range
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