pub struct Strings {
pub hud_hint_rows: &'static [HintRow],
pub hud_edit_rows: &'static [HintRow],
pub hud_saved_prefix: &'static str,
pub hud_save_failed_prefix: &'static str,
pub hud_quit_unsaved: &'static str,
pub hud_release_blocked_prefix: &'static str,
pub hud_release_blocked_suffix: &'static str,
pub hud_released: &'static str,
}Fields§
§hud_hint_rows: &'static [HintRow]The marking controls, shown while not editing a label.
hud_edit_rows: &'static [HintRow]The label editor’s controls.
hud_saved_prefix: &'static str§hud_save_failed_prefix: &'static str§hud_quit_unsaved: &'static str§hud_release_blocked_prefix: &'static strClosing a window that still holds marks. The count goes between the two halves; deleting stays an explicit act, so this refuses rather than offering to discard.
hud_release_blocked_suffix: &'static str§hud_released: &'static strA window closed while others remain: that display is live again.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Strings
impl RefUnwindSafe for Strings
impl Send for Strings
impl Sync for Strings
impl Unpin for Strings
impl UnsafeUnpin for Strings
impl UnwindSafe for Strings
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