pub enum VectorOperator {
MockPointSource(Box<MockPointSource>),
OgrSource(Box<OgrSource>),
RasterVectorJoin(Box<RasterVectorJoin>),
Reprojection(Box<Reprojection>),
}Expand description
VectorOperator : An operator that produces vector data.
Variants§
MockPointSource(Box<MockPointSource>)
OgrSource(Box<OgrSource>)
RasterVectorJoin(Box<RasterVectorJoin>)
Reprojection(Box<Reprojection>)
Trait Implementations§
Source§impl Clone for VectorOperator
impl Clone for VectorOperator
Source§fn clone(&self) -> VectorOperator
fn clone(&self) -> VectorOperator
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VectorOperator
impl Debug for VectorOperator
Source§impl Default for VectorOperator
impl Default for VectorOperator
Source§impl<'de> Deserialize<'de> for VectorOperator
impl<'de> Deserialize<'de> for VectorOperator
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
Source§impl PartialEq for VectorOperator
impl PartialEq for VectorOperator
Source§impl Serialize for VectorOperator
impl Serialize for VectorOperator
impl StructuralPartialEq for VectorOperator
Auto Trait Implementations§
impl Freeze for VectorOperator
impl RefUnwindSafe for VectorOperator
impl Send for VectorOperator
impl Sync for VectorOperator
impl Unpin for VectorOperator
impl UnsafeUnpin for VectorOperator
impl UnwindSafe for VectorOperator
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