pub enum Corner {
TopLeft,
TopRight,
BottomLeft,
BottomRight,
}
Expand description
The corner to render stats in.
Variants§
TopLeft
The top left corner of the screen.
TopRight
The top right corner of the screen.
BottomLeft
The bottom left corner of the screen.
BottomRight
The bottom right corner of the screen.
Auto Trait Implementations§
impl Freeze for Corner
impl RefUnwindSafe for Corner
impl Send for Corner
impl Sync for Corner
impl Unpin for Corner
impl UnwindSafe for Corner
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