#[repr(u32)]pub enum CommandType<'p> {
Show 23 variants
Invalid,
ChangeWindowTitle {
title: &'p str,
},
ChangeWindowIcon,
SemanticPrompt,
ClipboardContents,
ReportPwd,
MouseShape,
ColorOperation,
KittyColorProtocol,
ShowDesktopNotification,
HyperlinkStart,
HyperlinkEnd,
ConemuSleep,
ConemuShowMessageBox,
ConemuChangeTabTitle,
ConemuProgressReport,
ConemuWaitInput,
ConemuGuiMacro,
ConemuRunProcess,
ConemuOutputEnvironmentVariable,
ConemuXtermEmulation,
ConemuComment,
KittyTextSizing,
}Expand description
Type of an OSC command.
Variants§
Invalid
ChangeWindowTitle
ChangeWindowIcon
SemanticPrompt
ClipboardContents
ReportPwd
MouseShape
ColorOperation
KittyColorProtocol
ShowDesktopNotification
HyperlinkStart
HyperlinkEnd
ConemuSleep
ConemuShowMessageBox
ConemuChangeTabTitle
ConemuProgressReport
ConemuWaitInput
ConemuGuiMacro
ConemuRunProcess
ConemuOutputEnvironmentVariable
ConemuXtermEmulation
ConemuComment
KittyTextSizing
Trait Implementations§
Source§impl<'p> Clone for CommandType<'p>
impl<'p> Clone for CommandType<'p>
Source§fn clone(&self) -> CommandType<'p>
fn clone(&self) -> CommandType<'p>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'p> Debug for CommandType<'p>
impl<'p> Debug for CommandType<'p>
Source§impl<'p> Default for CommandType<'p>
impl<'p> Default for CommandType<'p>
Source§fn default() -> CommandType<'p>
fn default() -> CommandType<'p>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'p> Freeze for CommandType<'p>
impl<'p> RefUnwindSafe for CommandType<'p>
impl<'p> Send for CommandType<'p>
impl<'p> Sync for CommandType<'p>
impl<'p> Unpin for CommandType<'p>
impl<'p> UnsafeUnpin for CommandType<'p>
impl<'p> UnwindSafe for CommandType<'p>
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