pub struct SaveDialogOptionsDTO {
pub Base: DialogOptionsDTO,
}Expand description
A serializable struct that holds all configuration options for a “Save”
file dialog. It flattens the shared DialogOptionsDTO and can be extended
with save-specific properties in the future.
Fields§
§Base: DialogOptionsDTOThe base options common to all file dialogs.
Trait Implementations§
Source§impl Clone for SaveDialogOptionsDTO
impl Clone for SaveDialogOptionsDTO
Source§fn clone(&self) -> SaveDialogOptionsDTO
fn clone(&self) -> SaveDialogOptionsDTO
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 Debug for SaveDialogOptionsDTO
impl Debug for SaveDialogOptionsDTO
Source§impl Default for SaveDialogOptionsDTO
impl Default for SaveDialogOptionsDTO
Source§fn default() -> SaveDialogOptionsDTO
fn default() -> SaveDialogOptionsDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SaveDialogOptionsDTO
impl<'de> Deserialize<'de> for SaveDialogOptionsDTO
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
Auto Trait Implementations§
impl Freeze for SaveDialogOptionsDTO
impl RefUnwindSafe for SaveDialogOptionsDTO
impl Send for SaveDialogOptionsDTO
impl Sync for SaveDialogOptionsDTO
impl Unpin for SaveDialogOptionsDTO
impl UnwindSafe for SaveDialogOptionsDTO
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