pub struct CellState {
pub set: i32,
pub g0set: i32,
pub g1set: i32,
/* private fields */
}Expand description
Character set and cell state for the parser, matching tmux input_cell.
Fields§
§set: i32Active character set: 0 = G0, 1 = G1.
g0set: i32G0 set: 0 = normal, 1 = ACS.
g1set: i32G1 set: 0 = normal, 1 = ACS.
Implementations§
Trait Implementations§
impl Eq for CellState
impl StructuralPartialEq for CellState
Auto Trait Implementations§
impl Freeze for CellState
impl RefUnwindSafe for CellState
impl Send for CellState
impl Sync for CellState
impl Unpin for CellState
impl UnsafeUnpin for CellState
impl UnwindSafe for CellState
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