Enum egui::layers::Order[][src]

pub enum Order {
    Background,
    Middle,
    Foreground,
    Tooltip,
    Debug,
}

Different layer categories

Variants

Background

Painted behind all floating windows

Middle

Normal moveable windows that you reorder by click

Foreground

Popups, menus etc that should always be painted on top of windows Foreground objects can also have tooltips

Tooltip

Things floating on top of everything else, like tooltips. You cannot interact with these.

Debug

Debug layer, always painted last / on top

Implementations

impl Order[src]

pub fn allow_interaction(&self) -> bool[src]

Trait Implementations

impl Clone for Order[src]

impl Copy for Order[src]

impl Debug for Order[src]

impl Eq for Order[src]

impl Hash for Order[src]

impl Ord for Order[src]

impl PartialEq<Order> for Order[src]

impl PartialOrd<Order> for Order[src]

impl StructuralEq for Order[src]

impl StructuralPartialEq for Order[src]

Auto Trait Implementations

impl RefUnwindSafe for Order

impl Send for Order

impl Sync for Order

impl Unpin for Order

impl UnwindSafe for Order

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CallHasher for T where
    T: Hash + ?Sized

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.