pub struct Layer<M> {
pub name: String,
pub features: Vec<VectorFeature<M>>,
}
Expand description
Layer Class to contain the layer information for splitting or simplifying
Fields§
§name: String
the layer name
features: Vec<VectorFeature<M>>
the layer’s features
Implementations§
Auto Trait Implementations§
impl<M> Freeze for Layer<M>
impl<M> RefUnwindSafe for Layer<M>where
M: RefUnwindSafe,
impl<M> Send for Layer<M>where
M: Send,
impl<M> Sync for Layer<M>where
M: Sync,
impl<M> Unpin for Layer<M>where
M: Unpin,
impl<M> UnwindSafe for Layer<M>where
M: UnwindSafe,
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