pub struct ControlToken {
pub code: String,
}Expand description
A non-printable control token (OSC sequences that are not links).
Fields§
§code: StringThe raw escape sequence bytes.
Trait Implementations§
Source§impl Clone for ControlToken
impl Clone for ControlToken
Source§fn clone(&self) -> ControlToken
fn clone(&self) -> ControlToken
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 ControlToken
impl Debug for ControlToken
impl Eq for ControlToken
Source§impl PartialEq for ControlToken
impl PartialEq for ControlToken
Source§fn eq(&self, other: &ControlToken) -> bool
fn eq(&self, other: &ControlToken) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ControlToken
Auto Trait Implementations§
impl Freeze for ControlToken
impl RefUnwindSafe for ControlToken
impl Send for ControlToken
impl Sync for ControlToken
impl Unpin for ControlToken
impl UnsafeUnpin for ControlToken
impl UnwindSafe for ControlToken
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