pub struct Group {
pub points: Vec<Range>,
pub lines: Vec<Range>,
pub polygons: Vec<Range>,
}
Expand description
A group which contains ranges of points, lines and polygons
Fields§
§points: Vec<Range>
Multiple range of points
lines: Vec<Range>
Multiple range of lines
polygons: Vec<Range>
Multiple range of polygons
Trait Implementations§
impl Eq for Group
impl StructuralPartialEq for Group
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnwindSafe for Group
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