pub struct Line<'a> {
pub indentation: usize,
pub start_line_index: LineIndex,
pub end_line_index: LineIndex,
pub parent_line_index: LineIndex,
pub name: String,
pub line: String,
pub object_width: usize,
pub start: ByteIndex,
pub end: ByteIndex,
pub object: Object<'a>,
}Fields§
§indentation: usize§start_line_index: LineIndex§end_line_index: LineIndex§parent_line_index: LineIndex§name: String§line: String§object_width: usize§start: ByteIndex§end: ByteIndex§object: Object<'a>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Line<'a>
impl<'a> RefUnwindSafe for Line<'a>
impl<'a> Send for Line<'a>
impl<'a> Sync for Line<'a>
impl<'a> Unpin for Line<'a>
impl<'a> UnwindSafe for Line<'a>
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