pub struct Line {
pub nodes: Vec<Node>,
pub start_node_index: usize,
pub end_node_index: usize,
pub fixed_start_position: bool,
}
Fields§
§nodes: Vec<Node>
§start_node_index: usize
§end_node_index: usize
§fixed_start_position: bool
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Line
impl RefUnwindSafe for Line
impl Send for Line
impl Sync for Line
impl Unpin for Line
impl UnwindSafe for Line
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