pub enum ScrollbarOrientation {
VerticalRight,
VerticalLeft,
HorizontalBottom,
HorizontalTop,
}Expand description
Scrollbar orientation.
Variants§
VerticalRight
Vertical scrollbar on the right side.
VerticalLeft
Vertical scrollbar on the left side.
HorizontalBottom
Horizontal scrollbar on the bottom.
HorizontalTop
Horizontal scrollbar on the top.
Trait Implementations§
Source§impl Clone for ScrollbarOrientation
impl Clone for ScrollbarOrientation
Source§fn clone(&self) -> ScrollbarOrientation
fn clone(&self) -> ScrollbarOrientation
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 ScrollbarOrientation
impl Debug for ScrollbarOrientation
Source§impl Default for ScrollbarOrientation
impl Default for ScrollbarOrientation
Source§fn default() -> ScrollbarOrientation
fn default() -> ScrollbarOrientation
Returns the “default value” for a type. Read more
Source§impl PartialEq for ScrollbarOrientation
impl PartialEq for ScrollbarOrientation
impl Copy for ScrollbarOrientation
impl Eq for ScrollbarOrientation
impl StructuralPartialEq for ScrollbarOrientation
Auto Trait Implementations§
impl Freeze for ScrollbarOrientation
impl RefUnwindSafe for ScrollbarOrientation
impl Send for ScrollbarOrientation
impl Sync for ScrollbarOrientation
impl Unpin for ScrollbarOrientation
impl UnsafeUnpin for ScrollbarOrientation
impl UnwindSafe for ScrollbarOrientation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.