#[non_exhaustive]pub enum TeachingTipPlacementMode {
Show 14 variants
Auto,
Top,
Bottom,
Left,
Right,
TopRight,
TopLeft,
BottomRight,
BottomLeft,
LeftTop,
LeftBottom,
RightTop,
RightBottom,
Center,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Auto
Top
Bottom
Left
Right
TopRight
TopLeft
BottomRight
BottomLeft
LeftTop
LeftBottom
RightTop
RightBottom
Center
Trait Implementations§
Source§impl Clone for TeachingTipPlacementMode
impl Clone for TeachingTipPlacementMode
Source§fn clone(&self) -> TeachingTipPlacementMode
fn clone(&self) -> TeachingTipPlacementMode
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 moreimpl Copy for TeachingTipPlacementMode
Source§impl Debug for TeachingTipPlacementMode
impl Debug for TeachingTipPlacementMode
impl Eq for TeachingTipPlacementMode
Source§impl PartialEq for TeachingTipPlacementMode
impl PartialEq for TeachingTipPlacementMode
impl StructuralPartialEq for TeachingTipPlacementMode
Auto Trait Implementations§
impl Freeze for TeachingTipPlacementMode
impl RefUnwindSafe for TeachingTipPlacementMode
impl Send for TeachingTipPlacementMode
impl Sync for TeachingTipPlacementMode
impl Unpin for TeachingTipPlacementMode
impl UnsafeUnpin for TeachingTipPlacementMode
impl UnwindSafe for TeachingTipPlacementMode
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