pub struct Line {
pub elements: Vec<LineElement>,
}
Expand description
Contains the set of elements which compose a line.
Fields§
§elements: Vec<LineElement>
Set of line elements.
Implementations§
Trait Implementations§
Source§impl From<Vec<LineElement>> for Line
impl From<Vec<LineElement>> for Line
Source§fn from(value: Vec<LineElement>) -> Self
fn from(value: Vec<LineElement>) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Line
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