pub enum Position {
Absolute(Scalar),
Relative(Relative, Option<Id>),
}
Expand description
Some Position of some Widget along a single axis.
Positions for both the x and y axes are stored internally within the widget::CommonBuilder type, allowing all widgets to be positioned in a variety of different ways.
See the Positionable trait for methods that allow for setting the Positions in various ways.
Note that Positionable is implemented for all types that implement Widget.
Variants§
Absolute(Scalar)
A specific position.
Relative(Relative, Option<Id>)
A position relative to some other Widget.
Trait Implementations§
impl Copy for Position
impl StructuralPartialEq for Position
Auto Trait Implementations§
impl Freeze for Position
impl RefUnwindSafe for Position
impl Send for Position
impl Sync for Position
impl Unpin for Position
impl UnwindSafe for Position
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