pub enum ScrollBarEvent {
None,
Scroll {
scroll_pos: f32,
view_total: f32,
view_visible: f32,
},
ScrollDone,
}
Variants§
Trait Implementations§
Source§impl Clone for ScrollBarEvent
impl Clone for ScrollBarEvent
Source§fn clone(&self) -> ScrollBarEvent
fn clone(&self) -> ScrollBarEvent
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 ScrollBarEvent
impl Debug for ScrollBarEvent
Source§impl PartialEq for ScrollBarEvent
impl PartialEq for ScrollBarEvent
impl StructuralPartialEq for ScrollBarEvent
Auto Trait Implementations§
impl Freeze for ScrollBarEvent
impl RefUnwindSafe for ScrollBarEvent
impl Send for ScrollBarEvent
impl Sync for ScrollBarEvent
impl Unpin for ScrollBarEvent
impl UnwindSafe for ScrollBarEvent
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