pub enum StackDirection {
TopToBottom,
BottomToTop,
}Expand description
Direction used by stack flows when emitting vertical cells.
Variants§
TopToBottom
Place cells from the current row start downward.
BottomToTop
Place cells from the bottom of the current scope upward.
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 · 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 StackDirection
impl Debug for StackDirection
Source§impl Default for StackDirection
impl Default for StackDirection
Source§impl PartialEq for StackDirection
impl PartialEq for StackDirection
impl Copy for StackDirection
impl Eq for StackDirection
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
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.