pub enum UiVertexType {
UIRoot,
Component,
Modal,
List,
Input,
Button,
Text,
}
Expand description
Standard Vertex Types for UI Components.
Variants§
UIRoot
The root of the UI component tree.
Component
A generic UI component.
Modal
A modal dialog.
List
A list of items.
Input
An input field.
Button
A button.
Text
A text element.
Implementations§
Auto Trait Implementations§
impl Freeze for UiVertexType
impl RefUnwindSafe for UiVertexType
impl Send for UiVertexType
impl Sync for UiVertexType
impl Unpin for UiVertexType
impl UnwindSafe for UiVertexType
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