pub enum DcsPayload {
Decrqss(Vec<u8>),
Passthrough(Vec<u8>),
Sixel(Vec<u8>),
}Expand description
DCS payload delivered to the screen writer.
Variants§
Decrqss(Vec<u8>)
DECRQSS query (the string after $q).
Passthrough(Vec<u8>)
tmux passthrough (data after tmux; prefix).
Sixel(Vec<u8>)
Sixel image data (deferred/deferred).
Trait Implementations§
Source§impl Clone for DcsPayload
impl Clone for DcsPayload
Source§fn clone(&self) -> DcsPayload
fn clone(&self) -> DcsPayload
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 moreAuto Trait Implementations§
impl Freeze for DcsPayload
impl RefUnwindSafe for DcsPayload
impl Send for DcsPayload
impl Sync for DcsPayload
impl Unpin for DcsPayload
impl UnsafeUnpin for DcsPayload
impl UnwindSafe for DcsPayload
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