#[repr(u32)]pub enum EditorFileDialogMode {
ModeOpenFile = 0,
ModeOpenFiles = 1,
ModeOpenDir = 2,
ModeOpenAny = 3,
ModeSaveFile = 4,
}Variants§
Trait Implementations§
Source§impl Clone for EditorFileDialogMode
impl Clone for EditorFileDialogMode
Source§fn clone(&self) -> EditorFileDialogMode
fn clone(&self) -> EditorFileDialogMode
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 EditorFileDialogMode
Source§impl Debug for EditorFileDialogMode
impl Debug for EditorFileDialogMode
impl Eq for EditorFileDialogMode
Source§impl Hash for EditorFileDialogMode
impl Hash for EditorFileDialogMode
Source§impl PartialEq for EditorFileDialogMode
impl PartialEq for EditorFileDialogMode
Source§fn eq(&self, other: &EditorFileDialogMode) -> bool
fn eq(&self, other: &EditorFileDialogMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EditorFileDialogMode
Auto Trait Implementations§
impl Freeze for EditorFileDialogMode
impl RefUnwindSafe for EditorFileDialogMode
impl Send for EditorFileDialogMode
impl Sync for EditorFileDialogMode
impl Unpin for EditorFileDialogMode
impl UnsafeUnpin for EditorFileDialogMode
impl UnwindSafe for EditorFileDialogMode
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