pub struct ScrollUnitsMix<P>(/* private fields */);
Expand description
m
Properties that define scroll units.
Properties§
Sourcepub v_line_unit(unit: impl IntoVar<Length>);
pub v_line_unit(unit: impl IntoVar<Length>);
Vertical offset added when the SCROLL_DOWN_CMD
runs and removed when the SCROLL_UP_CMD
runs.
Relative lengths are relative to the viewport height.
This property sets the VERTICAL_LINE_UNIT_VAR
.
Sourcepub h_line_unit(unit: impl IntoVar<Length>);
pub h_line_unit(unit: impl IntoVar<Length>);
Horizontal offset added when the SCROLL_RIGHT_CMD
runs and removed when the SCROLL_LEFT_CMD
runs.
Relative lengths are relative to the viewport width.
This property sets the HORIZONTAL_LINE_UNIT_VAR
.
Sourcepub line_units(
&self,
horizontal: impl IntoVar<Length>,
vertical: impl IntoVar<Length>,
);
pub line_units( &self, horizontal: impl IntoVar<Length>, vertical: impl IntoVar<Length>, );
Horizontal and vertical offsets used when scrolling.
This property sets the h_line_unit
and v_line_unit
.
Sourcepub alt_factor(factor: impl IntoVar<Factor>);
pub alt_factor(factor: impl IntoVar<Factor>);
Scroll unit multiplier used when alternate scrolling.
This property sets the ALT_FACTOR_VAR
.
Sourcepub v_page_unit(unit: impl IntoVar<Length>);
pub v_page_unit(unit: impl IntoVar<Length>);
Vertical offset added when the PAGE_DOWN_CMD
runs and removed when the PAGE_UP_CMD
runs.
Relative lengths are relative to the viewport height.
This property sets the VERTICAL_PAGE_UNIT_VAR
.
Sourcepub h_page_unit(unit: impl IntoVar<Length>);
pub h_page_unit(unit: impl IntoVar<Length>);
Horizontal offset added when the PAGE_RIGHT_CMD
runs and removed when the PAGE_LEFT_CMD
runs.
Relative lengths are relative to the viewport width.
This property sets the HORIZONTAL_PAGE_UNIT_VAR
.
Sourcepub page_units(
&self,
horizontal: impl IntoVar<Length>,
vertical: impl IntoVar<Length>,
);
pub page_units( &self, horizontal: impl IntoVar<Length>, vertical: impl IntoVar<Length>, );
Horizontal and vertical offsets used when page-scrolling.
This property sets the h_page_unit
and v_page_unit
.
Sourcepub h_wheel_unit(unit: impl IntoVar<Length>);
pub h_wheel_unit(unit: impl IntoVar<Length>);
Horizontal offset added when the mouse wheel is scrolling by lines.
The unit
value is multiplied by the MouseScrollDelta::LineDelta
x value to determinate the scroll delta.
This property sets the HORIZONTAL_WHEEL_UNIT_VAR
.
Sourcepub v_wheel_unit(unit: impl IntoVar<Length>);
pub v_wheel_unit(unit: impl IntoVar<Length>);
Vertical offset added when the mouse wheel is scrolling by lines.
The unit
value is multiplied by the MouseScrollDelta::LineDelta
y value to determinate the scroll delta.
This property sets the VERTICAL_WHEEL_UNIT_VAR
`.
Sourcepub wheel_units(
&self,
horizontal: impl IntoVar<Length>,
vertical: impl IntoVar<Length>,
);
pub wheel_units( &self, horizontal: impl IntoVar<Length>, vertical: impl IntoVar<Length>, );
Horizontal and vertical offsets used when mouse wheel scrolling.
This property sets the h_wheel_unit
and v_wheel_unit
.
Sourcepub zoom_wheel_unit(unit: impl IntoVar<Factor>);
pub zoom_wheel_unit(unit: impl IntoVar<Factor>);
Scale delta added when the mouse wheel is zooming by lines.
The unit
value is multiplied by the MouseScrollDelta::LineDelta
value to determinate the scale delta.
This property sets the ZOOM_WHEEL_UNIT_VAR
.
Sourcepub define_viewport_unit(enabled: impl IntoVar<bool>);
pub define_viewport_unit(enabled: impl IntoVar<bool>);
If the scroll defines its viewport size as the LayoutMetrics::viewport
for the scroll content.
This property sets the DEFINE_VIEWPORT_UNIT_VAR
.
Trait Implementations§
Source§impl<P> Deref for ScrollUnitsMix<P>
impl<P> Deref for ScrollUnitsMix<P>
Source§impl<P> DerefMut for ScrollUnitsMix<P>
impl<P> DerefMut for ScrollUnitsMix<P>
Auto Trait Implementations§
impl<P> Freeze for ScrollUnitsMix<P>where
P: Freeze,
impl<P> RefUnwindSafe for ScrollUnitsMix<P>where
P: RefUnwindSafe,
impl<P> Send for ScrollUnitsMix<P>where
P: Send,
impl<P> Sync for ScrollUnitsMix<P>where
P: Sync,
impl<P> Unpin for ScrollUnitsMix<P>where
P: Unpin,
impl<P> UnwindSafe for ScrollUnitsMix<P>where
P: UnwindSafe,
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync 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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R> Rng for R
impl<R> Rng for R
Source§fn random<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
fn random<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
StandardUniform
distribution. Read moreSource§fn random_iter<T>(self) -> Iter<StandardUniform, Self, T>
fn random_iter<T>(self) -> Iter<StandardUniform, Self, T>
Source§fn random_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
fn random_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
Source§fn random_bool(&mut self, p: f64) -> bool
fn random_bool(&mut self, p: f64) -> bool
p
of being true. Read moreSource§fn random_ratio(&mut self, numerator: u32, denominator: u32) -> bool
fn random_ratio(&mut self, numerator: u32, denominator: u32) -> bool
numerator/denominator
of being
true. Read moreSource§fn sample<T, D>(&mut self, distr: D) -> Twhere
D: Distribution<T>,
fn sample<T, D>(&mut self, distr: D) -> Twhere
D: Distribution<T>,
Source§fn sample_iter<T, D>(self, distr: D) -> Iter<D, Self, T>where
D: Distribution<T>,
Self: Sized,
fn sample_iter<T, D>(self, distr: D) -> Iter<D, Self, T>where
D: Distribution<T>,
Self: Sized,
Source§fn gen<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
fn gen<T>(&mut self) -> Twhere
StandardUniform: Distribution<T>,
random
to avoid conflict with the new gen
keyword in Rust 2024.Rng::random
.Source§fn gen_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
fn gen_range<T, R>(&mut self, range: R) -> Twhere
T: SampleUniform,
R: SampleRange<T>,
random_range
Rng::random_range
.Source§impl<R> TryRngCore for R
impl<R> TryRngCore for R
Source§type Error = Infallible
type Error = Infallible
Source§fn try_next_u32(&mut self) -> Result<u32, <R as TryRngCore>::Error>
fn try_next_u32(&mut self) -> Result<u32, <R as TryRngCore>::Error>
u32
.Source§fn try_next_u64(&mut self) -> Result<u64, <R as TryRngCore>::Error>
fn try_next_u64(&mut self) -> Result<u64, <R as TryRngCore>::Error>
u64
.Source§fn try_fill_bytes(
&mut self,
dst: &mut [u8],
) -> Result<(), <R as TryRngCore>::Error>
fn try_fill_bytes( &mut self, dst: &mut [u8], ) -> Result<(), <R as TryRngCore>::Error>
dest
entirely with random data.Source§fn unwrap_mut(&mut self) -> UnwrapMut<'_, Self>
fn unwrap_mut(&mut self) -> UnwrapMut<'_, Self>
UnwrapMut
wrapper.Source§fn read_adapter(&mut self) -> RngReadAdapter<'_, Self>where
Self: Sized,
fn read_adapter(&mut self) -> RngReadAdapter<'_, Self>where
Self: Sized,
RngCore
to a RngReadAdapter
.