pub enum ToastAnchor {
TopRight,
TopLeft,
BottomRight,
BottomLeft,
}Expand description
Where toasts stack on screen.
Variants§
Trait Implementations§
Source§impl Clone for ToastAnchor
impl Clone for ToastAnchor
Source§fn clone(&self) -> ToastAnchor
fn clone(&self) -> ToastAnchor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ToastAnchor
impl Debug for ToastAnchor
Source§impl PartialEq for ToastAnchor
impl PartialEq for ToastAnchor
Source§fn eq(&self, other: &ToastAnchor) -> bool
fn eq(&self, other: &ToastAnchor) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ToastAnchor
impl Eq for ToastAnchor
impl StructuralPartialEq for ToastAnchor
Auto Trait Implementations§
impl Freeze for ToastAnchor
impl RefUnwindSafe for ToastAnchor
impl Send for ToastAnchor
impl Sync for ToastAnchor
impl Unpin for ToastAnchor
impl UnsafeUnpin for ToastAnchor
impl UnwindSafe for ToastAnchor
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