pub enum Side {
Above,
Right,
Below,
Left,
}Expand description
A direction, where a Widget will be placed in relation to
another.
Variants§
Above
Put the Widget above another.
Right
Put the Widget on the right.
Below
Put the Widget on the left.
Left
Put the Widget below another.
Implementations§
Trait Implementations§
impl Copy for Side
impl Eq for Side
impl StructuralPartialEq for Side
Auto Trait Implementations§
impl Freeze for Side
impl RefUnwindSafe for Side
impl Send for Side
impl Sync for Side
impl Unpin for Side
impl UnsafeUnpin for Side
impl UnwindSafe for Side
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