#[non_exhaustive]pub struct StackConfigInput {
pub output_resolution: Option<OutputResolutionStackInput>,
pub target_bands: Option<Vec<String>>,
}
Expand description
The input structure for Stacking Operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.output_resolution: Option<OutputResolutionStackInput>
The structure representing output resolution (in target georeferenced units) of the result of stacking operation.
target_bands: Option<Vec<String>>
A list of bands to be stacked in the specified order. When the parameter is not provided, all the available bands in the data collection are stacked in the alphabetical order of their asset names.
Implementations§
source§impl StackConfigInput
impl StackConfigInput
sourcepub fn output_resolution(&self) -> Option<&OutputResolutionStackInput>
pub fn output_resolution(&self) -> Option<&OutputResolutionStackInput>
The structure representing output resolution (in target georeferenced units) of the result of stacking operation.
sourcepub fn target_bands(&self) -> Option<&[String]>
pub fn target_bands(&self) -> Option<&[String]>
A list of bands to be stacked in the specified order. When the parameter is not provided, all the available bands in the data collection are stacked in the alphabetical order of their asset names.
source§impl StackConfigInput
impl StackConfigInput
sourcepub fn builder() -> StackConfigInputBuilder
pub fn builder() -> StackConfigInputBuilder
Creates a new builder-style object to manufacture StackConfigInput
.
Trait Implementations§
source§impl Clone for StackConfigInput
impl Clone for StackConfigInput
source§fn clone(&self) -> StackConfigInput
fn clone(&self) -> StackConfigInput
Returns a copy 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 StackConfigInput
impl Debug for StackConfigInput
source§impl PartialEq<StackConfigInput> for StackConfigInput
impl PartialEq<StackConfigInput> for StackConfigInput
source§fn eq(&self, other: &StackConfigInput) -> bool
fn eq(&self, other: &StackConfigInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StackConfigInput
Auto Trait Implementations§
impl RefUnwindSafe for StackConfigInput
impl Send for StackConfigInput
impl Sync for StackConfigInput
impl Unpin for StackConfigInput
impl UnwindSafe for StackConfigInput
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