pub struct BlockingSaveFileDialog<'a, W: HasWindowHandle> {
pub window: W,
pub title: &'a str,
pub default_filename: Option<&'a str>,
pub filter: &'a [BlockingPickFilesDialogFilter<'a>],
}Fields§
§window: W§title: &'a str§default_filename: Option<&'a str>§filter: &'a [BlockingPickFilesDialogFilter<'a>]Implementations§
Source§impl<'a, W: HasWindowHandle> BlockingSaveFileDialog<'a, W>
impl<'a, W: HasWindowHandle> BlockingSaveFileDialog<'a, W>
Trait Implementations§
Source§impl<'a, W: Clone + HasWindowHandle> Clone for BlockingSaveFileDialog<'a, W>
impl<'a, W: Clone + HasWindowHandle> Clone for BlockingSaveFileDialog<'a, W>
Source§fn clone(&self) -> BlockingSaveFileDialog<'a, W>
fn clone(&self) -> BlockingSaveFileDialog<'a, W>
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 moreAuto Trait Implementations§
impl<'a, W> Freeze for BlockingSaveFileDialog<'a, W>where
W: Freeze,
impl<'a, W> RefUnwindSafe for BlockingSaveFileDialog<'a, W>where
W: RefUnwindSafe,
impl<'a, W> Send for BlockingSaveFileDialog<'a, W>where
W: Send,
impl<'a, W> Sync for BlockingSaveFileDialog<'a, W>where
W: Sync,
impl<'a, W> Unpin for BlockingSaveFileDialog<'a, W>where
W: Unpin,
impl<'a, W> UnsafeUnpin for BlockingSaveFileDialog<'a, W>where
W: UnsafeUnpin,
impl<'a, W> UnwindSafe for BlockingSaveFileDialog<'a, W>where
W: UnwindSafe,
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