pub struct SourceLine {
pub number: usize,
pub content: String,
pub highlights: Vec<Highlight>,
}Expand description
A single source line with metadata
Fields§
§number: usizeLine number (1-based)
content: StringThe line content
highlights: Vec<Highlight>Highlights/underlines on this line
Trait Implementations§
Source§impl Clone for SourceLine
impl Clone for SourceLine
Source§fn clone(&self) -> SourceLine
fn clone(&self) -> SourceLine
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 SourceLine
impl RefUnwindSafe for SourceLine
impl Send for SourceLine
impl Sync for SourceLine
impl Unpin for SourceLine
impl UnsafeUnpin for SourceLine
impl UnwindSafe for SourceLine
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