pub struct ThumbBounds { /* private fields */ }Expand description
How short and how long a thumb may get, as fractions of the track.
A very long list would otherwise produce a thumb too small to see or to grab; a platform states its own floor rather than inheriting someone else’s.
Implementations§
Source§impl ThumbBounds
impl ThumbBounds
Sourcepub const FULL: Self
pub const FULL: Self
A thumb free to be any length, which is what a caller that enforces a minimum in pixels rather than fractions wants.
Sourcepub fn new(minimum: f32, maximum: f32) -> Self
pub fn new(minimum: f32, maximum: f32) -> Self
Bounds clamped into 0..=1 and ordered, so a caller cannot describe an
empty range.
Trait Implementations§
Source§impl Clone for ThumbBounds
impl Clone for ThumbBounds
Source§fn clone(&self) -> ThumbBounds
fn clone(&self) -> ThumbBounds
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ThumbBounds
Source§impl Debug for ThumbBounds
impl Debug for ThumbBounds
Source§impl Default for ThumbBounds
impl Default for ThumbBounds
Source§impl PartialEq for ThumbBounds
impl PartialEq for ThumbBounds
impl StructuralPartialEq for ThumbBounds
Auto Trait Implementations§
impl Freeze for ThumbBounds
impl RefUnwindSafe for ThumbBounds
impl Send for ThumbBounds
impl Sync for ThumbBounds
impl Unpin for ThumbBounds
impl UnsafeUnpin for ThumbBounds
impl UnwindSafe for ThumbBounds
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