pub struct BufferPos {
pub line: u32,
pub col: u16,
}Expand description
A cell position in the combined buffer (scrollback + viewport).
line: 0-indexed line index in the combined buffer.col: 0-indexed column in the current viewport coordinate space.
Fields§
§line: u32§col: u16Implementations§
Trait Implementations§
impl Copy for BufferPos
impl Eq for BufferPos
impl StructuralPartialEq for BufferPos
Auto Trait Implementations§
impl Freeze for BufferPos
impl RefUnwindSafe for BufferPos
impl Send for BufferPos
impl Sync for BufferPos
impl Unpin for BufferPos
impl UnwindSafe for BufferPos
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