pub struct DisableFocusChange;Expand description
A command that disables focus event emission.
Trait Implementations§
Source§impl Clone for DisableFocusChange
impl Clone for DisableFocusChange
Source§fn clone(&self) -> DisableFocusChange
fn clone(&self) -> DisableFocusChange
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 Command for DisableFocusChange
impl Command for DisableFocusChange
Source§fn write_ansi(&self, f: &mut impl Write) -> Result<(), Error>
fn write_ansi(&self, f: &mut impl Write) -> Result<(), Error>
Write an ANSI representation of this command to the given writer.
An ANSI code can manipulate the terminal by writing it to the terminal buffer.
However, only Windows 10 and UNIX systems support this. Read more
Source§fn is_ansi_code_supported(&self) -> bool
fn is_ansi_code_supported(&self) -> bool
Returns whether the ANSI code representation of this command is supported by windows. Read more
Source§impl Debug for DisableFocusChange
impl Debug for DisableFocusChange
Source§impl PartialEq for DisableFocusChange
impl PartialEq for DisableFocusChange
impl Copy for DisableFocusChange
impl Eq for DisableFocusChange
impl StructuralPartialEq for DisableFocusChange
Auto Trait Implementations§
impl Freeze for DisableFocusChange
impl RefUnwindSafe for DisableFocusChange
impl Send for DisableFocusChange
impl Sync for DisableFocusChange
impl Unpin for DisableFocusChange
impl UnwindSafe for DisableFocusChange
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