pub struct ChunkedLine {
pub content: Vec<Cell>,
pub wrapped: bool,
}Expand description
A line stored in the rope buffer.
Fields§
§content: Vec<Cell>The cells in this line.
wrapped: boolWhether this line was soft-wrapped.
Implementations§
Trait Implementations§
Source§impl Clone for ChunkedLine
impl Clone for ChunkedLine
Source§fn clone(&self) -> ChunkedLine
fn clone(&self) -> ChunkedLine
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 ChunkedLine
impl RefUnwindSafe for ChunkedLine
impl Send for ChunkedLine
impl Sync for ChunkedLine
impl Unpin for ChunkedLine
impl UnwindSafe for ChunkedLine
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