pub enum StackDirection {
Horizontal,
Vertical,
}Expand description
Direction of the stack.
Variants§
Trait Implementations§
Source§impl Clone for StackDirection
impl Clone for StackDirection
Source§fn clone(&self) -> StackDirection
fn clone(&self) -> StackDirection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for StackDirection
Source§impl Debug for StackDirection
impl Debug for StackDirection
Source§impl Default for StackDirection
impl Default for StackDirection
Source§fn default() -> StackDirection
fn default() -> StackDirection
Returns the “default value” for a type. Read more
impl Eq for StackDirection
Source§impl PartialEq for StackDirection
impl PartialEq for StackDirection
Source§fn eq(&self, other: &StackDirection) -> bool
fn eq(&self, other: &StackDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StackDirection
Auto Trait Implementations§
impl Freeze for StackDirection
impl RefUnwindSafe for StackDirection
impl Send for StackDirection
impl Sync for StackDirection
impl Unpin for StackDirection
impl UnsafeUnpin for StackDirection
impl UnwindSafe for StackDirection
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