pub struct HeadlessLine {
pub logical_line_index: usize,
pub is_wrapped_part: bool,
pub cells: Vec<Cell>,
}Expand description
Headless line information
Fields§
§logical_line_index: usizeCorresponding logical line index
is_wrapped_part: boolWhether this is a part created by wrapping (soft wrap)
cells: Vec<Cell>List of cells
Implementations§
Trait Implementations§
Source§impl Clone for HeadlessLine
impl Clone for HeadlessLine
Source§fn clone(&self) -> HeadlessLine
fn clone(&self) -> HeadlessLine
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for HeadlessLine
impl RefUnwindSafe for HeadlessLine
impl Send for HeadlessLine
impl Sync for HeadlessLine
impl Unpin for HeadlessLine
impl UnwindSafe for HeadlessLine
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