pub struct SingleRasterSource {
pub raster: Box<RasterOperator>,
}Expand description
SingleRasterSource : A single raster operator as a source for this operator.
Fields§
§raster: Box<RasterOperator>Implementations§
Source§impl SingleRasterSource
impl SingleRasterSource
Sourcepub fn new(raster: RasterOperator) -> SingleRasterSource
pub fn new(raster: RasterOperator) -> SingleRasterSource
A single raster operator as a source for this operator.
Trait Implementations§
Source§impl Clone for SingleRasterSource
impl Clone for SingleRasterSource
Source§fn clone(&self) -> SingleRasterSource
fn clone(&self) -> SingleRasterSource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SingleRasterSource
impl Debug for SingleRasterSource
Source§impl Default for SingleRasterSource
impl Default for SingleRasterSource
Source§fn default() -> SingleRasterSource
fn default() -> SingleRasterSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SingleRasterSource
impl<'de> Deserialize<'de> for SingleRasterSource
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 SingleRasterSource
impl PartialEq for SingleRasterSource
Source§fn eq(&self, other: &SingleRasterSource) -> bool
fn eq(&self, other: &SingleRasterSource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SingleRasterSource
impl Serialize for SingleRasterSource
impl StructuralPartialEq for SingleRasterSource
Auto Trait Implementations§
impl Freeze for SingleRasterSource
impl RefUnwindSafe for SingleRasterSource
impl Send for SingleRasterSource
impl Sync for SingleRasterSource
impl Unpin for SingleRasterSource
impl UnsafeUnpin for SingleRasterSource
impl UnwindSafe for SingleRasterSource
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