#[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
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) -> &[String]
pub fn target_bands(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .target_bands.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StackConfigInput
impl Debug for StackConfigInput
source§impl PartialEq for StackConfigInput
impl PartialEq for StackConfigInput
source§fn eq(&self, other: &StackConfigInput) -> bool
fn eq(&self, other: &StackConfigInput) -> bool
self
and other
values to be equal, and is used
by ==
.