pub enum ControlValue {
Char(char),
Integer(i32),
}Expand description
Kitty graphics protocol control value.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ControlValue
impl Clone for ControlValue
Source§fn clone(&self) -> ControlValue
fn clone(&self) -> ControlValue
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 Debug for ControlValue
impl Debug for ControlValue
Source§impl From<char> for ControlValue
impl From<char> for ControlValue
Source§impl From<i32> for ControlValue
impl From<i32> for ControlValue
Source§impl From<usize> for ControlValue
impl From<usize> for ControlValue
impl Copy for ControlValue
Auto Trait Implementations§
impl Freeze for ControlValue
impl RefUnwindSafe for ControlValue
impl Send for ControlValue
impl Sync for ControlValue
impl Unpin for ControlValue
impl UnsafeUnpin for ControlValue
impl UnwindSafe for ControlValue
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