use super::*;
impl Io {
#[doc(alias = "ConfigErrorRecovery")]
pub fn config_error_recovery(&self) -> bool {
self.inner().ConfigErrorRecovery
}
#[doc(alias = "ConfigErrorRecovery")]
pub fn set_config_error_recovery(&mut self, enabled: bool) {
self.inner_mut().ConfigErrorRecovery = enabled;
}
#[doc(alias = "ConfigErrorRecoveryEnableAssert")]
pub fn config_error_recovery_enable_assert(&self) -> bool {
self.inner().ConfigErrorRecoveryEnableAssert
}
#[doc(alias = "ConfigErrorRecoveryEnableAssert")]
pub fn set_config_error_recovery_enable_assert(&mut self, enabled: bool) {
self.inner_mut().ConfigErrorRecoveryEnableAssert = enabled;
}
#[doc(alias = "ConfigErrorRecoveryEnableDebugLog")]
pub fn config_error_recovery_enable_debug_log(&self) -> bool {
self.inner().ConfigErrorRecoveryEnableDebugLog
}
#[doc(alias = "ConfigErrorRecoveryEnableDebugLog")]
pub fn set_config_error_recovery_enable_debug_log(&mut self, enabled: bool) {
self.inner_mut().ConfigErrorRecoveryEnableDebugLog = enabled;
}
#[doc(alias = "ConfigErrorRecoveryEnableTooltip")]
pub fn config_error_recovery_enable_tooltip(&self) -> bool {
self.inner().ConfigErrorRecoveryEnableTooltip
}
#[doc(alias = "ConfigErrorRecoveryEnableTooltip")]
pub fn set_config_error_recovery_enable_tooltip(&mut self, enabled: bool) {
self.inner_mut().ConfigErrorRecoveryEnableTooltip = enabled;
}
#[doc(alias = "ConfigDebugIsDebuggerPresent")]
pub fn config_debug_is_debugger_present(&self) -> bool {
self.inner().ConfigDebugIsDebuggerPresent
}
#[doc(alias = "ConfigDebugIsDebuggerPresent")]
pub fn set_config_debug_is_debugger_present(&mut self, enabled: bool) {
self.inner_mut().ConfigDebugIsDebuggerPresent = enabled;
}
#[doc(alias = "ConfigDebugHighlightIdConflicts")]
pub fn config_debug_highlight_id_conflicts(&self) -> bool {
self.inner().ConfigDebugHighlightIdConflicts
}
#[doc(alias = "ConfigDebugHighlightIdConflicts")]
pub fn set_config_debug_highlight_id_conflicts(&mut self, enabled: bool) {
self.inner_mut().ConfigDebugHighlightIdConflicts = enabled;
}
#[doc(alias = "ConfigDebugHighlightIdConflictsShowItemPicker")]
pub fn config_debug_highlight_id_conflicts_show_item_picker(&self) -> bool {
self.inner().ConfigDebugHighlightIdConflictsShowItemPicker
}
#[doc(alias = "ConfigDebugHighlightIdConflictsShowItemPicker")]
pub fn set_config_debug_highlight_id_conflicts_show_item_picker(&mut self, enabled: bool) {
self.inner_mut()
.ConfigDebugHighlightIdConflictsShowItemPicker = enabled;
}
#[doc(alias = "ConfigDebugBeginReturnValueOnce")]
pub fn config_debug_begin_return_value_once(&self) -> bool {
self.inner().ConfigDebugBeginReturnValueOnce
}
#[doc(alias = "ConfigDebugBeginReturnValueOnce")]
pub fn set_config_debug_begin_return_value_once(&mut self, enabled: bool) {
self.inner_mut().ConfigDebugBeginReturnValueOnce = enabled;
}
#[doc(alias = "ConfigDebugBeginReturnValueLoop")]
pub fn config_debug_begin_return_value_loop(&self) -> bool {
self.inner().ConfigDebugBeginReturnValueLoop
}
#[doc(alias = "ConfigDebugBeginReturnValueLoop")]
pub fn set_config_debug_begin_return_value_loop(&mut self, enabled: bool) {
self.inner_mut().ConfigDebugBeginReturnValueLoop = enabled;
}
#[doc(alias = "ConfigDebugIgnoreFocusLoss")]
pub fn config_debug_ignore_focus_loss(&self) -> bool {
self.inner().ConfigDebugIgnoreFocusLoss
}
#[doc(alias = "ConfigDebugIgnoreFocusLoss")]
pub fn set_config_debug_ignore_focus_loss(&mut self, enabled: bool) {
self.inner_mut().ConfigDebugIgnoreFocusLoss = enabled;
}
#[doc(alias = "ConfigDebugIniSettings")]
pub fn config_debug_ini_settings(&self) -> bool {
self.inner().ConfigDebugIniSettings
}
#[doc(alias = "ConfigDebugIniSettings")]
pub fn set_config_debug_ini_settings(&mut self, enabled: bool) {
self.inner_mut().ConfigDebugIniSettings = enabled;
}
}