pub enum TerminalContext {
Tmux,
Zellij,
Iterm2,
Kitty,
WezTerm,
Alacritty,
GhosttyOrOther(String),
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for TerminalContext
impl Clone for TerminalContext
Source§fn clone(&self) -> TerminalContext
fn clone(&self) -> TerminalContext
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 Debug for TerminalContext
impl Debug for TerminalContext
Source§impl PartialEq for TerminalContext
impl PartialEq for TerminalContext
Source§fn eq(&self, other: &TerminalContext) -> bool
fn eq(&self, other: &TerminalContext) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TerminalContext
Auto Trait Implementations§
impl Freeze for TerminalContext
impl RefUnwindSafe for TerminalContext
impl Send for TerminalContext
impl Sync for TerminalContext
impl Unpin for TerminalContext
impl UnsafeUnpin for TerminalContext
impl UnwindSafe for TerminalContext
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