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 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 ScrollBarAction
impl Debug for ScrollBarAction
Source§impl PartialEq for ScrollBarAction
impl PartialEq for ScrollBarAction
impl StructuralPartialEq for ScrollBarAction
Auto Trait Implementations§
impl Freeze for ScrollBarAction
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> ActionTrait for T
impl<T> ActionTrait for T
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