pub enum UiKind {
Show 15 variants
Window,
CentralPanel,
LeftPanel,
RightPanel,
TopPanel,
BottomPanel,
Frame,
ScrollArea,
Resize,
Menu,
Popup,
Tooltip,
Picker,
TableCell,
GenericArea,
}
Expand description
What kind is this crate::Ui
?
Variants§
Window
CentralPanel
LeftPanel
A left crate::SidePanel
.
RightPanel
A right crate::SidePanel
.
TopPanel
A top crate::TopBottomPanel
.
BottomPanel
A bottom crate::TopBottomPanel
.
Frame
A crate::Frame
.
ScrollArea
Resize
Menu
The content of a regular menu.
Popup
The content of a popup menu.
Tooltip
A tooltip, as shown by e.g. crate::Response::on_hover_ui
.
Picker
A picker, such as color picker.
TableCell
A table cell (from the egui_extras
crate).
GenericArea
An crate::Area
that is not of any other kind.
Implementations§
Trait Implementations§
source§impl PartialEq for UiKind
impl PartialEq for UiKind
impl Copy for UiKind
impl Eq for UiKind
impl StructuralPartialEq for UiKind
Auto Trait Implementations§
impl Freeze for UiKind
impl RefUnwindSafe for UiKind
impl Send for UiKind
impl Sync for UiKind
impl Unpin for UiKind
impl UnwindSafe for UiKind
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