pub enum SaveDialogMsg {
Save,
SaveAs(String),
// some variants omitted
}
Expand description
Messages that can be sent to the save dialog component
Variants
Save
Opens the dialog
SaveAs(String)
Opens the dialog with a suggested file name
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SaveDialogMsg
impl Send for SaveDialogMsg
impl Sync for SaveDialogMsg
impl Unpin for SaveDialogMsg
impl UnwindSafe for SaveDialogMsg
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more