pub struct DiagnosticSpanLine {
pub text: String,
pub highlight_start: usize,
pub highlight_end: usize,
}
Fields§
§text: String
§highlight_start: usize
1-based, character offset in self.text.
highlight_end: usize
Trait Implementations§
Source§impl Clone for DiagnosticSpanLine
impl Clone for DiagnosticSpanLine
Source§fn clone(&self) -> DiagnosticSpanLine
fn clone(&self) -> DiagnosticSpanLine
Returns a copy 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 DiagnosticSpanLine
impl RefUnwindSafe for DiagnosticSpanLine
impl Send for DiagnosticSpanLine
impl Sync for DiagnosticSpanLine
impl Unpin for DiagnosticSpanLine
impl UnwindSafe for DiagnosticSpanLine
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