pub struct UISettings {
pub hidden: bool,
pub draw_always: bool,
pub modifiers_move_lock: bool,
pub modifiers_click_lock: bool,
pub close_with_esc: bool,
}Expand description
Current ArcDPS UI settings.
Fields§
Whether the UI is hidden.
draw_always: boolWhether the UI is always drawn.
When false, the UI is hidden during loading screens & character select.
modifiers_move_lock: boolWhether pressing the modifiers are required to move windows.
modifiers_click_lock: boolWhether pressing the modifiers are required to click windows.
close_with_esc: boolWhether windows should close with the ESC key.
Trait Implementations§
Source§impl Clone for UISettings
impl Clone for UISettings
Source§fn clone(&self) -> UISettings
fn clone(&self) -> UISettings
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 UISettings
impl Debug for UISettings
Source§impl PartialEq for UISettings
impl PartialEq for UISettings
impl Copy for UISettings
impl Eq for UISettings
impl StructuralPartialEq for UISettings
Auto Trait Implementations§
impl Freeze for UISettings
impl RefUnwindSafe for UISettings
impl Send for UISettings
impl Sync for UISettings
impl Unpin for UISettings
impl UnwindSafe for UISettings
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