pub enum Position {
TopLeft,
TopCenter,
TopRight,
LeftCenter,
Center,
RightCenter,
BottomLeft,
BottomCenter,
BottomRight,
Custom(&'static str, &'static str),
}
Expand description
Alert positions
Variants§
TopLeft
TopCenter
TopRight
LeftCenter
Center
RightCenter
BottomLeft
BottomCenter
BottomRight
Custom(&'static str, &'static str)
Trait Implementations§
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