pub enum ScrollBarAction {
None,
Scroll {
scroll_pos: f64,
view_total: f64,
view_visible: f64,
},
ScrollDone,
}Variants§
Trait Implementations§
source§impl Clone for ScrollBarAction
impl Clone for ScrollBarAction
source§fn clone(&self) -> ScrollBarAction
fn clone(&self) -> ScrollBarAction
Returns a copy 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 ScrollBarAction
impl Debug for ScrollBarAction
source§impl PartialEq<ScrollBarAction> for ScrollBarAction
impl PartialEq<ScrollBarAction> for ScrollBarAction
source§fn eq(&self, other: &ScrollBarAction) -> bool
fn eq(&self, other: &ScrollBarAction) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ScrollBarAction
Auto Trait Implementations§
impl RefUnwindSafe for ScrollBarAction
impl Send for ScrollBarAction
impl Sync for ScrollBarAction
impl Unpin for ScrollBarAction
impl UnwindSafe for ScrollBarAction
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