pub struct NativeFileDialogOptions {
pub filters: Vec<NativeFileFilter>,
pub default_location: Option<PathBuf>,
pub allow_multiple: bool,
}Fields§
§filters: Vec<NativeFileFilter>§default_location: Option<PathBuf>§allow_multiple: boolTrait Implementations§
Source§impl Clone for NativeFileDialogOptions
impl Clone for NativeFileDialogOptions
Source§fn clone(&self) -> NativeFileDialogOptions
fn clone(&self) -> NativeFileDialogOptions
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 moreSource§impl Debug for NativeFileDialogOptions
impl Debug for NativeFileDialogOptions
Source§impl Default for NativeFileDialogOptions
impl Default for NativeFileDialogOptions
Source§fn default() -> NativeFileDialogOptions
fn default() -> NativeFileDialogOptions
Returns the “default value” for a type. Read more
impl Eq for NativeFileDialogOptions
Source§impl PartialEq for NativeFileDialogOptions
impl PartialEq for NativeFileDialogOptions
impl StructuralPartialEq for NativeFileDialogOptions
Auto Trait Implementations§
impl Freeze for NativeFileDialogOptions
impl RefUnwindSafe for NativeFileDialogOptions
impl Send for NativeFileDialogOptions
impl Sync for NativeFileDialogOptions
impl Unpin for NativeFileDialogOptions
impl UnsafeUnpin for NativeFileDialogOptions
impl UnwindSafe for NativeFileDialogOptions
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