pub struct UiSettingsPreviousConnectionsScreenData {
pub ui_previous_connections: Vec<UiPreviousConnection>,
pub ui_unsaved_data: bool,
pub ui_display_save_dialog: bool,
}Fields§
§ui_previous_connections: Vec<UiPreviousConnection>§ui_unsaved_data: boolthis will be set to true once the user has made any edits plan is to show a save button when true
ui_display_save_dialog: boolif the users selects back when we have unsaved data, we should pop up a dialog to ask if they would like to save before exiting
Trait Implementations§
Source§impl Clone for UiSettingsPreviousConnectionsScreenData
impl Clone for UiSettingsPreviousConnectionsScreenData
Source§fn clone(&self) -> UiSettingsPreviousConnectionsScreenData
fn clone(&self) -> UiSettingsPreviousConnectionsScreenData
Returns a copy 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<'de> Deserialize<'de> for UiSettingsPreviousConnectionsScreenData
impl<'de> Deserialize<'de> for UiSettingsPreviousConnectionsScreenData
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 UiSettingsPreviousConnectionsScreenData
impl RefUnwindSafe for UiSettingsPreviousConnectionsScreenData
impl Send for UiSettingsPreviousConnectionsScreenData
impl Sync for UiSettingsPreviousConnectionsScreenData
impl Unpin for UiSettingsPreviousConnectionsScreenData
impl UnwindSafe for UiSettingsPreviousConnectionsScreenData
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