pub enum FileChooserMode {
SelectSingle,
SelectMultiple,
}Expand description
File chooser mode.
Variants§
Trait Implementations§
Source§impl Clone for FileChooserMode
impl Clone for FileChooserMode
Source§fn clone(&self) -> FileChooserMode
fn clone(&self) -> FileChooserMode
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 FileChooserMode
Source§impl Debug for FileChooserMode
impl Debug for FileChooserMode
Source§impl<'de> Deserialize<'de> for FileChooserMode
impl<'de> Deserialize<'de> for FileChooserMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for FileChooserMode
Source§impl PartialEq for FileChooserMode
impl PartialEq for FileChooserMode
Source§fn eq(&self, other: &FileChooserMode) -> bool
fn eq(&self, other: &FileChooserMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FileChooserMode
Auto Trait Implementations§
impl Freeze for FileChooserMode
impl RefUnwindSafe for FileChooserMode
impl Send for FileChooserMode
impl Sync for FileChooserMode
impl Unpin for FileChooserMode
impl UnsafeUnpin for FileChooserMode
impl UnwindSafe for FileChooserMode
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