pub enum UpdateMenuDirection {
Left,
Right,
Up,
Down,
}
Expand description
Determines the direction in which the buttons are laid out, whether in a
dropdown menu or a row/column of buttons. For left
and up
, the buttons
will still appear in left-to-right or top-to-bottom order respectively.
Default: “down”
Variants§
Trait Implementations§
Source§impl Clone for UpdateMenuDirection
impl Clone for UpdateMenuDirection
Source§fn clone(&self) -> UpdateMenuDirection
fn clone(&self) -> UpdateMenuDirection
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 UpdateMenuDirection
impl Debug for UpdateMenuDirection
Auto Trait Implementations§
impl Freeze for UpdateMenuDirection
impl RefUnwindSafe for UpdateMenuDirection
impl Send for UpdateMenuDirection
impl Sync for UpdateMenuDirection
impl Unpin for UpdateMenuDirection
impl UnwindSafe for UpdateMenuDirection
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