#[repr(C)]pub struct SgrUnknown {
pub full_ptr: *const u16,
pub full_len: usize,
pub partial_ptr: *const u16,
pub partial_len: usize,
}Expand description
Unknown SGR attribute data.
Contains the full parameter list and the partial list where parsing encountered an unknown or invalid sequence.
Fields§
§full_ptr: *const u16§full_len: usize§partial_ptr: *const u16§partial_len: usizeTrait Implementations§
Source§impl Clone for SgrUnknown
impl Clone for SgrUnknown
Source§fn clone(&self) -> SgrUnknown
fn clone(&self) -> SgrUnknown
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 moreimpl Copy for SgrUnknown
Source§impl Debug for SgrUnknown
impl Debug for SgrUnknown
Auto Trait Implementations§
impl !Send for SgrUnknown
impl !Sync for SgrUnknown
impl Freeze for SgrUnknown
impl RefUnwindSafe for SgrUnknown
impl Unpin for SgrUnknown
impl UnsafeUnpin for SgrUnknown
impl UnwindSafe for SgrUnknown
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