pub struct OpenDialogOptions {
pub title: Option<String>,
pub filters: Vec<DialogFilter>,
pub multiple: bool,
pub directory: bool,
pub default_path: Option<PathBuf>,
pub recursive: bool,
pub can_create_directories: bool,
}Fields§
§title: Option<String>§filters: Vec<DialogFilter>§multiple: bool§directory: bool§default_path: Option<PathBuf>§recursive: bool§can_create_directories: boolTrait Implementations§
Source§impl Clone for OpenDialogOptions
impl Clone for OpenDialogOptions
Source§fn clone(&self) -> OpenDialogOptions
fn clone(&self) -> OpenDialogOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for OpenDialogOptions
impl Default for OpenDialogOptions
Source§fn default() -> OpenDialogOptions
fn default() -> OpenDialogOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OpenDialogOptions
impl RefUnwindSafe for OpenDialogOptions
impl Send for OpenDialogOptions
impl Sync for OpenDialogOptions
impl Unpin for OpenDialogOptions
impl UnwindSafe for OpenDialogOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.