pub enum RasterOperator {
BandFilter(Box<BandFilter>),
Expression(Box<Expression>),
GdalSource(Box<GdalSource>),
Interpolation(Box<Interpolation>),
MultiBandGdalSource(Box<MultiBandGdalSource>),
RasterStacker(Box<RasterStacker>),
RasterTypeConversion(Box<RasterTypeConversion>),
Reprojection(Box<Reprojection>),
TemporalRasterAggregation(Box<TemporalRasterAggregation>),
}Expand description
RasterOperator : An operator that produces raster data.
Variants§
BandFilter(Box<BandFilter>)
Expression(Box<Expression>)
GdalSource(Box<GdalSource>)
Interpolation(Box<Interpolation>)
MultiBandGdalSource(Box<MultiBandGdalSource>)
RasterStacker(Box<RasterStacker>)
RasterTypeConversion(Box<RasterTypeConversion>)
Reprojection(Box<Reprojection>)
TemporalRasterAggregation(Box<TemporalRasterAggregation>)
Trait Implementations§
Source§impl Clone for RasterOperator
impl Clone for RasterOperator
Source§fn clone(&self) -> RasterOperator
fn clone(&self) -> RasterOperator
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 RasterOperator
impl Debug for RasterOperator
Source§impl Default for RasterOperator
impl Default for RasterOperator
Source§impl<'de> Deserialize<'de> for RasterOperator
impl<'de> Deserialize<'de> for RasterOperator
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 RasterOperator
impl PartialEq for RasterOperator
Source§impl Serialize for RasterOperator
impl Serialize for RasterOperator
impl StructuralPartialEq for RasterOperator
Auto Trait Implementations§
impl Freeze for RasterOperator
impl RefUnwindSafe for RasterOperator
impl Send for RasterOperator
impl Sync for RasterOperator
impl Unpin for RasterOperator
impl UnsafeUnpin for RasterOperator
impl UnwindSafe for RasterOperator
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