pub enum MValues<M: Clone = MValue> {
MValue(M),
LineStringMValues(LineStringMValues<M>),
MultiLineStringMValues(MultiLineStringMValues<M>),
PolygonMValues(PolygonMValues<M>),
MultiPolygonMValues(MultiPolygonMValues<M>),
}
Expand description
All possible M-Value shapes
Variants§
MValue(M)
Single M-Value
LineStringMValues(LineStringMValues<M>)
LineString M-Value
MultiLineStringMValues(MultiLineStringMValues<M>)
MultiLineString M-Value
PolygonMValues(PolygonMValues<M>)
Polygon M-Value
MultiPolygonMValues(MultiPolygonMValues<M>)
MultiPolygon M-Value
Trait Implementations§
Source§impl<'de, M> Deserialize<'de> for MValues<M>where
M: Deserialize<'de> + Clone,
impl<'de, M> Deserialize<'de> for MValues<M>where
M: Deserialize<'de> + Clone,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<M: Clone> StructuralPartialEq for MValues<M>
Auto Trait Implementations§
impl<M> Freeze for MValues<M>where
M: Freeze,
impl<M> RefUnwindSafe for MValues<M>where
M: RefUnwindSafe,
impl<M> Send for MValues<M>where
M: Send,
impl<M> Sync for MValues<M>where
M: Sync,
impl<M> Unpin for MValues<M>where
M: Unpin,
impl<M> UnwindSafe for MValues<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