pub struct DisableBracketedPaste;Expand description
A command that disables bracketed paste mode.
Trait Implementations§
Source§impl Clone for DisableBracketedPaste
impl Clone for DisableBracketedPaste
Source§fn clone(&self) -> DisableBracketedPaste
fn clone(&self) -> DisableBracketedPaste
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 DisableBracketedPaste
impl Command for DisableBracketedPaste
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 DisableBracketedPaste
impl Debug for DisableBracketedPaste
Source§impl PartialEq for DisableBracketedPaste
impl PartialEq for DisableBracketedPaste
impl Copy for DisableBracketedPaste
impl Eq for DisableBracketedPaste
impl StructuralPartialEq for DisableBracketedPaste
Auto Trait Implementations§
impl Freeze for DisableBracketedPaste
impl RefUnwindSafe for DisableBracketedPaste
impl Send for DisableBracketedPaste
impl Sync for DisableBracketedPaste
impl Unpin for DisableBracketedPaste
impl UnwindSafe for DisableBracketedPaste
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