pub enum SettingReport {
Unrecognized,
Raw(String),
}Expand description
The payload of a DECRPSS reply, Event::SettingReport.
Variants§
Unrecognized
The terminal did not recognize the requested setting (DCS 0 $ r ST).
The reply carries no data at all, so only the request that provoked it
says which setting was turned down.
Raw(String)
The setting as the terminal spelled it: the whole CSI sequence for the
control function without its introducer, so 0;1m for SGR, 2 q for
DECSCUSR, >4;2m for xterm’s XTQMODKEYS.
Trait Implementations§
Source§impl Clone for SettingReport
impl Clone for SettingReport
Source§fn clone(&self) -> SettingReport
fn clone(&self) -> SettingReport
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 SettingReport
impl Debug for SettingReport
impl Eq for SettingReport
Source§impl PartialEq for SettingReport
impl PartialEq for SettingReport
Source§fn eq(&self, other: &SettingReport) -> bool
fn eq(&self, other: &SettingReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SettingReport
Auto Trait Implementations§
impl Freeze for SettingReport
impl RefUnwindSafe for SettingReport
impl Send for SettingReport
impl Sync for SettingReport
impl Unpin for SettingReport
impl UnsafeUnpin for SettingReport
impl UnwindSafe for SettingReport
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