pub struct ReprojectionParameters {
pub derive_out_spec: Option<DeriveOutRasterSpecsSource>,
pub target_spatial_reference: String,
}Expand description
ReprojectionParameters : Parameters for the Reprojection operator.
Fields§
§derive_out_spec: Option<DeriveOutRasterSpecsSource>Controls how raster output bounds are derived. The default projectionBounds usually keeps a projection-aligned target grid, while dataBounds derives it directly from source data bounds.
target_spatial_reference: StringTarget spatial reference system.
Implementations§
Source§impl ReprojectionParameters
impl ReprojectionParameters
Sourcepub fn new(target_spatial_reference: String) -> ReprojectionParameters
pub fn new(target_spatial_reference: String) -> ReprojectionParameters
Parameters for the Reprojection operator.
Trait Implementations§
Source§impl Clone for ReprojectionParameters
impl Clone for ReprojectionParameters
Source§fn clone(&self) -> ReprojectionParameters
fn clone(&self) -> ReprojectionParameters
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 ReprojectionParameters
impl Debug for ReprojectionParameters
Source§impl Default for ReprojectionParameters
impl Default for ReprojectionParameters
Source§fn default() -> ReprojectionParameters
fn default() -> ReprojectionParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReprojectionParameters
impl<'de> Deserialize<'de> for ReprojectionParameters
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 ReprojectionParameters
impl PartialEq for ReprojectionParameters
Source§fn eq(&self, other: &ReprojectionParameters) -> bool
fn eq(&self, other: &ReprojectionParameters) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReprojectionParameters
impl Serialize for ReprojectionParameters
impl StructuralPartialEq for ReprojectionParameters
Auto Trait Implementations§
impl Freeze for ReprojectionParameters
impl RefUnwindSafe for ReprojectionParameters
impl Send for ReprojectionParameters
impl Sync for ReprojectionParameters
impl Unpin for ReprojectionParameters
impl UnsafeUnpin for ReprojectionParameters
impl UnwindSafe for ReprojectionParameters
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