Enum zng_wgt_scroll::ScrollFrom
source · pub enum ScrollFrom {
Var(Px),
VarTarget(Px),
Rendered(Px),
}
Expand description
Defines a scroll delta and to what value source it is applied.
Scrolling can get out of sync depending on what moment and source the current scroll is read, the offset vars can be multiple frames ahead as update cycles have higher priority than render, some scrolling operations also target the value the smooth scrolling animation is animating too, this enum lets you specify from what scroll offset a delta must be computed.
Variants§
Var(Px)
Scroll amount added to the offset var current value, if smooth scrolling is enabled this
can be a partial value different from VarTarget
.
Operations that compute a scroll delta from the offset var must use this variant otherwise they will overshoot.
VarTarget(Px)
Scroll amount added to the value the offset var is animating too.
Operations that accumulate a delta (line-up/down) must use this variant otherwise they will undershoot.
This is the same as Var
if smooth scrolling is disabled.
Rendered(Px)
Scroll amount added to the offset already rendered, this can be different from the offset var as multiple events and updates can happen before a pending render is applied.
Operations that compute a scroll offset from widget bounds info must use this variant otherwise they will overshoot.
Trait Implementations§
source§impl Clone for ScrollFrom
impl Clone for ScrollFrom
source§fn clone(&self) -> ScrollFrom
fn clone(&self) -> ScrollFrom
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ScrollFrom
impl Debug for ScrollFrom
source§impl<'de> Deserialize<'de> for ScrollFrom
impl<'de> Deserialize<'de> for ScrollFrom
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl Hash for ScrollFrom
impl Hash for ScrollFrom
source§impl PartialEq for ScrollFrom
impl PartialEq for ScrollFrom
source§impl Serialize for ScrollFrom
impl Serialize for ScrollFrom
impl Copy for ScrollFrom
impl StructuralPartialEq for ScrollFrom
Auto Trait Implementations§
impl Freeze for ScrollFrom
impl RefUnwindSafe for ScrollFrom
impl Send for ScrollFrom
impl Sync for ScrollFrom
impl Unpin for ScrollFrom
impl UnwindSafe for ScrollFrom
Blanket Implementations§
§impl<T> AnyEq for T
impl<T> AnyEq for T
source§impl<T> AnyVarValue for Twhere
T: VarValue,
impl<T> AnyVarValue for Twhere
T: VarValue,
source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
dyn Any
methods.source§fn clone_boxed(&self) -> Box<dyn AnyVarValue>
fn clone_boxed(&self) -> Box<dyn AnyVarValue>
source§fn clone_boxed_var(&self) -> Box<dyn AnyVar>
fn clone_boxed_var(&self) -> Box<dyn AnyVar>
LocalVar<Self>
.source§fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
fn eq_any(&self, other: &(dyn AnyVarValue + 'static)) -> bool
self
equals other
.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> FsChangeNote for T
impl<T> FsChangeNote for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more