Enum kas_core::ScrollBarMode
source · pub enum ScrollBarMode {
Fixed,
Auto,
Invisible,
}
Expand description
Scroll bar mode
Note that in addition to this mode, bars may be disabled on each axis.
Variants§
Fixed
Scroll bars are always shown if enabled.
Auto
Automatically enable/disable scroll bars as required when resized.
This has the side-effect of reserving enough space for scroll bars even when not required.
Invisible
Scroll bars float over content and are only drawn when hovered over by the mouse.
Trait Implementations§
source§impl Clone for ScrollBarMode
impl Clone for ScrollBarMode
source§fn clone(&self) -> ScrollBarMode
fn clone(&self) -> ScrollBarMode
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 ScrollBarMode
impl Debug for ScrollBarMode
source§impl Default for ScrollBarMode
impl Default for ScrollBarMode
source§impl Hash for ScrollBarMode
impl Hash for ScrollBarMode
source§impl PartialEq<ScrollBarMode> for ScrollBarMode
impl PartialEq<ScrollBarMode> for ScrollBarMode
source§fn eq(&self, other: &ScrollBarMode) -> bool
fn eq(&self, other: &ScrollBarMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ScrollBarMode
impl Eq for ScrollBarMode
impl StructuralEq for ScrollBarMode
impl StructuralPartialEq for ScrollBarMode
Auto Trait Implementations§
impl RefUnwindSafe for ScrollBarMode
impl Send for ScrollBarMode
impl Sync for ScrollBarMode
impl Unpin for ScrollBarMode
impl UnwindSafe for ScrollBarMode
Blanket Implementations§
source§impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
source§fn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
source§fn cast_approx(self) -> T
fn cast_approx(self) -> T
source§impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
source§fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
source§fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
source§fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.